* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #39452d 0%, #5a6a47 100%);
}
.verification-container {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 450px;
    width: 90%;
}
.logo {
    font-size: 48px;
    margin-bottom: 20px;
}
h1 {
    color: #39452d;
    margin-bottom: 10px;
    font-size: 28px;
}
.subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}
.message {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}
.error {
    background: #ffebee;
    color: #d32f2f;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}
.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}
button {
    background: #39452d;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
    width: 100%;
}
button:hover {
    background: #2a3320;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(57, 69, 45, 0.3);
}
button:active {
    transform: translateY(0);
}
.footer-note {
    margin-top: 30px;
    font-size: 12px;
    color: #999;
}
