/* 短信验证模态框样式 */
.verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.verification-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.verification-close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-size: 20px;
    color: #666;
}

.verification-header {
    text-align: center;
    margin-bottom: 20px;
}

.verification-header h3 {
    color: #333;
    margin-bottom: 10px;
}

.verification-header p {
    color: #666;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.input.text-main {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.verification-code-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.verify-img {
    border: 1px solid #ddd;
    border-radius: 5px;
}

.verification-code {
    display: flex;
    gap: 10px;
}

.send-code-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

.send-code-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.verification-submit {
    width: 100%;
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}
.verification-submit:hover  {
    background: var(--accent-dark);
}

.verification-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.verification-success {
    text-align: center;
    color: #28a745;
    font-size: 16px;
    margin-top: 20px;
}

.change-verify {
    color: #007bff;
    text-decoration: none;
    cursor: pointer;
}

.change-verify:hover {
    text-decoration: underline;
}