@font-face {
    font-family: 'Josefin Sans';
    src: url("../fonts/JosefinSans-VariableFont_wght.ttf") format("truetype");
}
body{
    margin:0;
    background-color: #000000;
    background-image: url("/media/background/app-login.png");
    background-repeat: no-repeat;
    min-height: 100vh;
    text-align:center;
    background-size: cover;
    overflow: auto;
}
html{
    font-size: 16px;
}
.loginlogo{/* Logo */
    width: 280px;
    height: 25.54px;
    margin: 70px auto 0;
}
/*Purple box*/
.login{
    background: rgba(0, 3, 94, 0.8);
    border-radius: 12px 12px 12px 12px;
    display: block;
    overflow:auto;
    max-width: 351px;
    min-width: 300px;
    /* margin: 34.46px auto; */
    margin: 54.46px auto;
}
.logincontainer{
    margin:26.1px 28.53px 39.9px;
    /* display: flex; */
    flex-direction: column;
    padding: 0px;
    gap: 20px;
    display: block;
    overflow: hidden;
}
.logincontainer label{
    height: 20px;
    text-align: left;
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    display: flex;
    letter-spacing: 0.0002em;
    color: #E5E5E5;
    color:transparent;
    /* opacity:70%; */
    flex: none;
    order: 0;
    flex-grow: 0;
}
.logincontainer input[type=text], .logincontainer input[type=email], .logincontainer input[type=password]{
    width: 100%;
    height: 36px;
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    display: flex;
    align-items: center;
    letter-spacing: 0.0002em;
    color: #E5E5E5;   
    flex: none;
    order: 0;
    flex-grow: 1;
    background-color: transparent;
    border:none;
    padding: 0;
    border-bottom:solid 1px #E5E5E5;
    margin-bottom: 25px;
}
.logincontainer input[type=text]::placeholder, .logincontainer input[type=email]::placeholder, .logincontainer input[type=password]::placeholder{
    color: #E5E5E5;
}
.logincontainer input[type=text]:focus,
.logincontainer input[type=text]:active,
.logincontainer input[type=email]:focus,
.logincontainer input[type=email]:active,
.logincontainer input[type=password]:focus,
.logincontainer input[type=password]:active,
.logincontainer input[type=text]:visited,
.logincontainer input[type=email]:visited,
.logincontainer input[type=password]:visited
{
    outline: none;
}
.logincontainer input:-internal-autofill-selected {
background-color: red!important;
}
/*PASSWORD*/
.eye{
    background-image: url("/media/icon/passhow.svg");
    width:24px;
    height: 24px;
    position: absolute;
    right: 0;
    bottom: -30px;
    background-size: 24px 24px;
    background-repeat:none;
    text-align:center;
    cursor: pointer;
}
#password_confirmation,#password{
    position:relative;
}
/*ERRORS*/
.invalid-label{
    color:#FD2C4E!important;
}
.invalid-input{
    border-color: #FD2C4E!important;
}
.invalid-sub{
    background-image: url("/media/icon/invalid.svg");
    background-repeat: no-repeat;
    background-size: 22px;
    width: 100%;
    height: 24px;
    text-align: left;
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.01em;
    color: #EB0D3F;
    flex: none;
    order: 0;
    flex-grow: 0;
    margin:-15px 0 25px -2px;
    padding-left: 27px;
}

/*reset password*/
.resetpass{
    width: 100%;
    height: 24px;
}
.resetpass a{
    height: 24px;
    font-family: 'Josefin Sans';
    color: #72F9FD;
    text-decoration: none;
    float: right;
    transition: 0.4s;
}
.resetpass a:hover{
    color: grey;
}
.rememberme{
    margin: 24px 0;
}
.rememberme input{
    border-radius: 0!important;
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.0001);
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin: 0;
    box-shadow: none!important;
    cursor: pointer;
}
.rememberme input:checked{
    background:transparent;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.8);
}
.rememberme label{
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    height: 24px;
    letter-spacing: -0.01em;
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.8);
}

/*BUTOS*/
.btn{
    width:100%;
    margin: 0;
    padding: 0;
}

.cancelbtn{
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    padding: 14px 32px 12px;
    width: 138.97px;
    height: 48px;
    background: rgba(4, 8, 37, 0.3);
    border: 1px solid #FFFFFF;
    border-radius: 40px;
    color: #FFFFFF;
    text-decoration: none;
    transition: 0.4s;
    display: inline-flex;
    margin-top: 12px;
}
.cancelbtn span{
    width: 99px;
    height: 22px;
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    flex: none;
    order: 0;
    flex-grow: 0;
}
.cancelbtn:hover{
    background: #FFFFFF;
    border: 1px solid rgba(4, 8, 37, 0.3);
    color: #000000;
}
.loginbtn:disabled{
    justify-content: center;
    align-items: center;
    padding: 14px 32px 12px;
    width: 138.97px;
    height: 48px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    border:0;
    color: rgba(255, 255, 255, 0.3);
}
.loginbtn span{
    color:#000000;
    width: 61px;
    height: 22px;
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    letter-spacing: -0.02em;
    flex: none;
    order: 0;
    flex-grow: 0;
}
.loginbtn{
    background: #FFFFFF;
    float: right;
    display: flex;
    justify-content: center;
    padding: 14px 32px 12px;
    width: 138.97px;
    height: 48px;
    border-radius: 30px;
    flex: none;
    order: 1;
    border: 0;
    color: 000;
}
.foot{
    width: 100%;
    margin-top:25px;
}
.foot span{
font-family: 'Josefin Sans';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 24px;
letter-spacing: -0.02em;
color: #FFFFFF;
transition: 0.4s;
}
.foot a{
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #72F9FD;
    text-decoration: none;
    transition: 0.4s;
}
.foot a:hover{
    color: grey;
}
/*CONFIRMATION*/
.confirmation h4{
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin:12px auto 16px;
}
.confirmation p{
    width: 287.24px;
    height: 48px;
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    flex: none;
    order: 0;
    flex-grow: 0;
    margin: auto;
}
.confirmation a{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 32px 12px;
    width: 287.24px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 30px;
    margin: 40px auto 0;
    text-decoration: none;
    color: #000000;
    transition: 0.4s;
}
.confirmation a span{
    height: 22px;
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: -0.02em;
    flex: none;
    order: 0;
    flex-grow: 0;
}
.confirmation a:hover{
    color:#FFFFFF;
    background: rgba(4, 8, 37, 1)
}
@media (min-width: 358px) {
    .btn{
        width:100%;
        margin: 0;
        padding: 0;
    }
    .cancelbtn{
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 14px 32px 12px;
        gap: 8px;
        width: 138.97px;
        height: 48px;
        background: rgba(4, 8, 37, 0.3);
        border: 1px solid #FFFFFF;
        border-radius: 40px;
        flex: none;
        order: 0;
        flex-grow: 1;
        float:left;
        color: #FFFFFF;
        text-decoration: none;
        transition: 0.4s;
        margin-top: 0;
    }
    .loginbtn{
        /* float:right; */
        /* display: flex; */
        justify-content: center;
        align-items: center;
        /* padding: 14px 32px 12px; */
        /* width: 138.97px; */
        /* height: 48px; */
        /* background: rgba(255, 255, 255, 0.3); */
        /* border-radius: 30px; */
        flex: none;
        order: 1;
        flex-grow: 1;
        border:0;
        /* color: rgba(255, 255, 255, 0.3); */
        /* transition: 0.4s; */
    }
}
@media (min-width: 768px) {
    body{
        margin:0;
        overflow: hidden;
        background-image: url('/media/background/splash.png');
        background-repeat:round;
        min-height: 100vh;
        text-align:center;
        background-size: cover;
    }
    .loginlogo{
        margin: 90px auto 0;
        height: 28px;
        width: 306px;
    }
    .login{
        width: 456px;
        max-width: 456px;
        min-height: 440px;
        height: min-content;
        max-height: 650px;
        overflow:hidden;
        margin: 42px auto;
    }
    .logincontainer{
        /* gap: 24px; */
        width: 336px;
        min-height: 374px;
        margin:26px auto;
    }
}
@media (min-width: 992px) {
    body{
        background-image: url('/media/background/background_desktop.png');
    }
}
@media (min-width: 1400px) {
    body{
        background-image: url('/media/background/desktop1440.png');
    }
}