.login-form {
    margin: auto;
    max-width: 410px;
    gap: 14px;
}
.input {
    width: 100%;
    padding: 15px 25px;
    border: 1px solid #eaeaea;
    background: #fff;
    border-radius: 10px;
    font-size: 15px;
}
.submit {
    position: relative;
    width: 100%;
    padding: 15px 25px;
    background: var(--bg-color);
    border-radius: 10px;
    font-size: 15px;
    color: #fff;
}
.submit:disabled {
    cursor: not-allowed;
}
.submit:disabled .btn-loader ,.send-sms-btn:disabled .btn-loader {
    position: absolute;
    right: 10px; top: 25%;
    width: 25px;
    height: 25px;
    border: 4px solid #FFF;
    border-bottom-color: var(--sc-bg-color);
    border-radius: 50%;
    display: inline-block;
    animation: rotation 1s linear infinite;
}
.send-sms-btn:disabled .btn-loader {
    right: 5px; top: 15%;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.send-sms-btn {
    position: relative;
    padding: 10px 40px;
    background: #eaeaea;
    border-radius: 5px;
}