body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
}

body:has(form) {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 500px;
}
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background-color: #0056b3;
}

select {
    border: 2px solid #ddd;
    background: #eee;
    padding: 10px;
    transition: 0.4s;
  }
  
select:hover,
select:focus {
background: #ddd;
}

  select::picker-icon {
    color: #999;
    transition: 0.4s rotate;
  }

  .btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

/* Captcha Page Styles */
.captcha-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.captcha-wrapper h1 {
    color: #333;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.captcha-counter {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 600;
}

.captcha-instruction {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 550px;
}

.friendlycaptcha-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    min-height: 100px;
}

.button-container {
    margin-top: 40px;
}

.success-message {
    display: block;
}