/* Стили формы логина по СМС (Вынесены отдельно для загрузки на любых страницах) */

.sc-sms-login-wrapper {
    max-width: 400px;
    margin: 0 auto;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: inherit;
}

.sc-sms-login-wrapper h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.sc-sms-login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sc-sms-login-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sc-sms-login-field label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.sc-sms-login-field input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.sc-sms-login-field input:focus {
    border-color: #3182ce;
}

.sc-sms-login-btn {
    width: 100%;
    padding: 12px 20px;
    background: #3182ce;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
}

.sc-sms-login-btn:hover {
    background: #2b6cb0;
}

.sc-sms-login-btn-success {
    background: #38a169;
}

.sc-sms-login-btn-success:hover {
    background: #2f855a;
}

.sc-sms-login-timer-msg {
    font-size: 13px;
    color: #a0aec0;
    margin-top: 10px;
    text-align: center;
    display: none;
}

.sc-sms-login-msg {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}
