body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFCC29;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.verification-card {
    max-width: 500px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 8px 30px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.logo-container {
    text-align: center;
    margin-bottom: 25px;
}

.logo-container img {
    max-width: 120px;
    height: auto;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.card-subtitle {
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}

.form-control {
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 16px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #FFCC29;
    box-shadow: 0 0 0 0.2rem rgba(255, 204, 41, 0.25);
}

.form-group {
    margin-bottom: 10px !important;
}

.form-label {
    font-weight: 500;
    margin-bottom: 10px;
    color: #444;
}

.btn-login {
    background-color: #FFCC29;
    color: #333;
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-right: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.btn-login:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.input-with-icon input {
    padding-left: 45px;
}

@media (max-width: 576px) {
    .verification-card {
        padding: 30px 20px;
    }
}