﻿/* CSS Document */
/*
编写者：北京享健丽科技
时间：2025年6月20日
*/

.container {
    max-width: 500px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: left;
}

.form-container {
    padding: 20px 30px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
    font-size: 14px;
}


.form-group input {
    width:90%;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.verification-group {
    display: flex;
    gap: 15px;
}

.verification-input {
    flex: 1;
}

.verification-btn {
    flex-shrink: 0;
    width: 140px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verification-btn:hover {
    background: #2980b9;
}

.verification-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(to right, #3498db, #2c3e50);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer {
    text-align: center;
    padding: 20px;
    color: #7f8c8d;
    font-size: 14px;
    border-top: 1px solid #eee;
}

.footer a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    text-decoration: underline;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 6px;
    display: none;
}

.status-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 6px;
}
.success {
    color: #3498db;

}
.error {

    color: #e74c3c;
}

@media (max-width: 576px) {
    .container {
        margin: 10px;
    }
    
    .header {
        padding: 25px 15px;
    }
    
    .form-container {
        padding: 25px 20px;
    }
    
    .verification-group {
        flex-direction: column;
    }
    
    .verification-btn {
        width: 100%;
    }
}
