@import "https://use.typekit.net/tjf8vzw.css";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


:root {
    --black:        #1D1A26;
    --blue-100:     #6FB6C0;
    --blue-200:     #8BCED7;
    --red-100:      #DB1143;
    --red-200:      #ED174C;
    --grey-100:     #F0EFF4;
    --white:        #FFF;
    --font-title:   "finalsix", sans-serif;
    --font-content: "Roboto", sans-serif;
}

body, html {
    @media only screen and (min-width: 992px) {
        min-height: 1150px;
    }

    /*font-family: 'Avenir LT Std';*/
    margin: 0;
    padding: 0;
    font-family: var(--font-content);
    font-size: 1rem;
    font-weight: 400;
    color: var(--black);
    border: 5px solid var(--black);
    background-color: var(--grey-100);
}

.wrapper {
    width: 100%;
    /*max-width: 1360px;*/
    height: 100%;
    margin: auto;
    padding: 0 30px;
}



.login {
    @media only screen and (max-width: 991px) {
        min-height: 0 !important;
        padding: 50px 0 175px !important;
    }

    @media only screen and (min-width: 992px) {
        min-height: 1080px;
    }

    position: relative;
    display: flex;
    align-items: center;
    height: calc(100vh - 79px);
    min-height: 1080px;
    /*padding: 50px 0;*/

    & img {
        @media only screen and (max-width: 991px) {
            height: 50px;
        }
    }
}

.login__container {
    height: 100%;

    & .row {
        height: 100%;
    }
}

.login__content {
    @media only screen and (max-width: 991px) {
        max-width: 100% !important;
    }

    position: relative;
    width: 100%;
    max-width: 340px;
    margin: auto;
}

.login__back-btn {
    @media only screen and (max-width: 991px) {
        position: unset;
        margin: 25px 0 50px !important;
    }

    position: absolute;
    top: -150px;
}

.login__text {
    @media only screen and (max-width: 991px) {
        margin: 50px 0 !important;
    }

    margin: 150px 0 50px;
    font-family: var(--font-title);
    font-size: 1.125rem;
}

.login__form {

    & .form-item {

        &:not(:nth-last-child(1)) {
            margin-bottom: 20px;
        }
    }

    & label {
        display: block;
        margin-bottom: 10px;
        font-size: 14px;
        color: var(--blue-200);
        font-family: var(--font-title);
        font-weight: 500;
    }

    & input {
        /*width: calc(100% - 20px);*/
        height: 30px;
        padding: 0 10px;
        border-radius: 5px;
        background-color: white;
        border: 0;
        font-size: 12px;

        &::placeholder {
            opacity: 0.6;
        }
    }
}

.alert {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;

    &.alert-danger {
        background-color: var(--red-100);
        color: white;
    }
}

.login__forgot {
    display: flex;
    margin-top: 30px;
    font-size: 12px;

    & a {
        margin-left: 5px;
        color: var(--black);
        font-weight: 500;
    }
}

.login__image {
    @media only screen and (max-width: 991px) {
        display: none;
    }

    position: absolute;
    top: 25px;
    right: 5px;
    bottom: 25px;
    /*width: 50%;*/
    border-radius: 5px;
    overflow: hidden;

    & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

footer {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--black);
    color: var(--white);
    text-align: center;
    z-index: 100;

    & a {
        color: var(--white);
    }
}

.login__tag {
    font-family: var(--font-title);
    font-size: 1.125rem;
    font-weight: 700;
}