#verify-section {
    max-width: 400px;
    margin: 30px auto;
    padding: 20px;
    border-radius: 12px;
    background: #f9f9f9;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    font-family: 'Outfit', sans-serif;
}
#verify-section input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}
#verify-section button {
    width: 100%;
    background: #b22414;
    color: white;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}
#verify-section button:hover {
    background: #b22414;
}
#verify-message {
    text-align: center;
    margin-top: 10px;
    color: #444;
    font-weight: 500;
}
