.hso-login {
    border: 1px solid #eee;
    padding: 20px;
    margin: 0!important;
    border-radius: 20px;
}

.login-header h2 {
    text-align: center;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 20px;
    color: black;
}

.login-content form {
    background: #eee;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
}

.login-content form input[type="tel"],.login-content form input[type="text"],.login-content form input[type="password"] {
    border: 1px solid #000;
    padding: 10px;
    color: black;
    border-radius: 20px!important;
    background: white;
}

.login-content form input[type="tel"]:focus-visible,.login-content form button,.login-content form input[type="password"]:focus-visible,.login-content form input[type="text"]:focus-visible {
    outline: none
}

.hso-login span {
    text-align: center;
    color: black;
    font-size: 15px;
}

.hso-login button {
    position: relative;
}

.hso-login button::after {
    content: '';
    display: block;
    position: absolute;
    width: 1.2rem;
    height: 1.2rem;
    border: .15rem solid transparent;
    border-right-color: white;
    border-radius: 50%;
    animation: animate .5s linear infinite;
    opacity: 0
}

@keyframes animate {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.hso-login button.loading {
    color: transparent
}

.hso-login button.loading svg {
    display: none
}

.hso-login button.loading::after {
    opacity: 1
}

.login-content form button {
    background: #f5384c;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 20px;
    color: #fff;
}


.login-content form button:hover {
    background: #cb2f40;
    border: none;
    color: #fff;
}

.login-content form label {
    color: black;
    font-size: 15px;
}

.login-content form button svg {
    width: 24px;
    height: 24px
}

.hso-login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.745);
    z-index: 1000
}

.hso-login.modal {
    width: 500px;
    background: #fff;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

.login-modal-button {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-modal-button svg {
    width: 24px;
    height: 24px;
}

@media screen and (max-width: 999px) {
    .hso-login,.login-content form {
        padding:10px
    }

    .login-header h2 {
        margin-bottom: 10px;
        padding-bottom: 10px
    }

    .login-content form,.login-content form button {
        gap: 10px
    }
}

@media screen and (max-width: 570px) {
    .hso-login.modal {
        width:auto;
        min-width: 300px
    }
    .login-modal-button span {
        display: none;
    }
    .login-modal-button, .login-modal-button:hover {
        background: none;
    }
}

@media screen and (max-width: 300px) {
    .hso-login.modal {
        width:auto;
        min-width: 200px
    }
}