.forms-sms-popup {
    position: relative;
    max-width: 500px;
    width: 100%;
    padding: 50px 65px;
    border-radius: 4px;
    background-color: #fff;
    font-family: Circe;
    margin: 20px auto;
}

/* Стили для кнопки закрытия magnific-popup */
.mfp-close-btn-in .mfp-close {
    color: #999;
    font-size: 32px;
    line-height: 1;
    position: absolute;
    right: 15px;
    top: 15px;
    text-decoration: none;
    z-index: 1;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: Arial, sans-serif;
}

.mfp-close-btn-in .mfp-close:hover {
    color: #333;
}

.mfp-close-btn-in .mfp-close:focus {
    outline: none;
}

.forms-sms-popup-title {
    margin-bottom: 30px;
    font-family: 'Open Sans Condensed';
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}

.forms-sms-popup-form .forms-sms-popup-item {
    margin-bottom: 20px;
    position: relative;
}

.forms-sms-popup-form .forms-sms-popup-item span {
    color: #ff281f;
    font-size: 14px;
    display: block;
    margin-top: 8px;
    text-align: center;
}

.forms-sms-popup-input {
    width: 100%;
    height: 60px;
    padding: 0 25px;
    text-align: center;
    border-radius: 4px;
    border: solid 1px rgba(120, 120, 120, .5);
    background-color: #fff;
    font-size: 20px;
    color: #000;
    -webkit-appearance: none;
    transition: border-color 0.3s;
  
}

.forms-sms-popup-input:focus {
    outline: none;
    border-color: #0179da;
    box-shadow: 0 0 0 2px rgba(1, 121, 218, 0.1);
}

.forms-sms-popup-input::placeholder {
    color: #999;
    letter-spacing: normal;
}

.forms-sms-popup-submit {
    display: block;
    text-align: center;
    vertical-align: middle;
    color: #fff;
    font-family: Circe;
    font-weight: bold;
    font-size: 20px;
    border-color: transparent;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: #FC554E;
    border-radius: 5px;
    padding: 0 20px;
    transition: .2s;
}


.forms-sms-popup-submit.disabled {
    background: #ccc;
    cursor: not-allowed;
}

.forms-sms-popup .docs-send_popup-checkbox {
    margin-bottom: 20px;
    text-align: left;
}

@media (max-width: 768px) {
    .forms-sms-popup {
        max-width: 90%;
        padding: 20px;
        margin: 20px auto;
    }
    
    .forms-sms-popup-title {
        font-size: 20px;
        margin-bottom: 20px;
        padding-right: 35px;
    }
    
    .mfp-close-btn-in .mfp-close {
        font-size: 28px;
        right: 10px;
        top: 10px;
    }
    
    .forms-sms-popup-input {
        padding: 12px 15px;
        font-size: 16px;
    }
    
}

