/* Certificate generator page specific styles */
.verification-card {
    background: white;
    max-width: 620px;
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 25px 45px -12px rgba(0,32,64,0.15);
    padding: 2rem;
    margin: 0 auto;
}
.card-header {
    text-align: center;
    margin-bottom: 2rem;
}
.card-header h2 {
    font-size: 1.9rem;
    background: linear-gradient(120deg, #145c8a, #0b4a6e);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}
label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1c4e6e;
}
input, select {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border: 1.5px solid #e2e9f2;
    border-radius: 20px;
    background: white;
}
input:focus, select:focus {
    border-color: #1e88e5;
    box-shadow: 0 0 0 4px rgba(30,136,229,0.15);
}
.submit-btn {
    width: 100%;
    background: linear-gradient(105deg, #146b9e, #0f5883);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.25s;
}
.submit-btn:hover {
    background: linear-gradient(105deg, #0f5b87, #0a4263);
    transform: translateY(-2px);
}
.error-message {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fef2f2;
    color: #b91c1c;
    border-left: 4px solid #dc2626;
    border-radius: 12px;
}
.success-message {
    display: none;
    background: #e6f7e6;
    color: #1e5a1e;
    border-left: 5px solid #2e7d32;
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
}
.success-message.show {
    display: block;
}