/* verification.css - Additional styles for verification page */

.verification-section {
    background: linear-gradient(135deg, #fffafc 0%, #f8f4ff 100%);
}

.playful-card {
    border: 2px solid #ffd6e0;
    background: #fff;
}

.verification-icon {
    color: #ff85a2;
}

.pastel-input {
    border: 2px solid #e2d1f9;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.pastel-input:focus {
    border-color: #ff85a2;
    box-shadow: 0 0 0 0.2rem rgba(255, 133, 162, 0.25);
}

.btn-pastel {
    background: linear-gradient(135deg, #ff85a2 0%, #ffacc7 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.btn-pastel:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 133, 162, 0.3);
    color: white;
}

.btn-outline-pastel {
    border: 2px solid #ff85a2;
    border-radius: 12px;
    color: #ff85a2;
    background: transparent;
    font-weight: 600;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.btn-outline-pastel:hover {
    background: #ff85a2;
    color: white;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .playful-card {
        margin: 0 15px;
    }
    
    .pastel-input {
        font-size: 1rem;
        padding: 10px 14px;
    }
}