@font-face {
    font-family: 'Satoshi';
    src: url("../../../../includes/uploads/fonts/Satoshi-Light.woff");
    font-weight: 300;
}

@font-face {
    font-family: 'Satoshi';
    src: url("../../../../includes/uploads/fonts/Satoshi-Regular.woff");
    font-weight: 500;
}

@font-face {
    font-family: 'Satoshi';
    src: url("../../../../includes/uploads/fonts/Satoshi-Medium.woff");
    font-weight: 700;
}

@font-face {
    font-family: 'Satoshi';
    src: url("../../../../includes/uploads/fonts/Satoshi-Bold.woff");
    font-weight: 900;
}

#loginCodeStep {
    display: none;
}

body {
    margin: 0;
    overflow: hidden;
}

#loginBackground {
    width: 100%;
    height: 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url(../../../../includes/uploads/system_photos/login_background_desktop.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#loginEmailStep,
#loginCodeStep {
    position: fixed;
    width: 450px;
    background-color: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 375px;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
}

#loginEmailStepContainer,
#loginCodeStepContainer {
    margin-right: 25px;
    margin-left: 25px;
    margin-top: 25px;
}

#loginEmailStepLogo,
#loginCodeStepLogo {
    text-align: center;
}

#loginEmailStepLogoPhoto,
#loginCodeStepLogoPhoto{
    margin-bottom: 20px;
    max-height: 75px;
}

#loginEmailStepText,
#loginCodeStepText,
#loginIPStepText {
    font-family: 'Satoshi';
    font-size: 16px;
    color: #2D0700;
}

#loginEmailStepText {
    margin-bottom: 16px;
}

#loginEmail,
#loginCode {
    height: 40px;
    width: calc( 100% - 20px );
    margin: 0px 0px 0px 0px;
    border: 1px solid #E77553;
    border-radius: 8px;
    border-image: none;
}

input::placeholder {
    font-family: 'Satoshi';
    font-size: 14px;
    color: #BDBDBD;
}

input[type=email],
input[type=code] {
    font-family: 'Satoshi';
    font-size: 14px;
    color: #2D0700;
    padding-left: 15px;
}

#loginEmailConfirmBtn,
#loginCodeConfirmBtn {
    background-color: #E77553;
    border: none;
    width: 100%;
    height: 40px;
    color: #FFFFFF;
    border-radius: 8px;
    margin-top: 16px;
    font-family: 'Satoshi';
    font-size: 16px;
    cursor: pointer;
}

#loginCodeStepTextEmail {
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-family: 'Satoshi';
    font-size: 14px;
    color: #2D0700;
}

select {
    font-family: 'Satoshi';
    padding: 0px 10px;
}

#ipSelectUser{
    margin: 16px 0px 8px 0px;
    width: 100%;
    height: 40px;
    border: 1px solid #AA5439;
    border-radius: 8px;
}

@media only screen and (max-width: 600px) {

    #loginBackground {
        background-image: url("../../../../includes/uploads/system_photos/login_background_mobile.png");
    }

    body {
        min-height: 100vh;
    }

    #loginEmailStep,
    #loginCodeStep {
        width: 90%;
    }

    #loginCodeStep {
        height: 400px
    }

  }

  
