/*===== GOOGLE FONTS =====*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*===== VARIABLES CSS =====*/
/*=== Colores ===*/
:root {
    --first-color: #153448;
    --text-color: #8590AD;
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

/*=== Fuente y tipografia ===*/
:root {
    --body-font: 'Roboto', sans-serif;
    --big-font-size: 2rem;
    --normal-font-size: 0.938rem;
    --smaller-font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
    :root {
        --big-font-size: 2.5rem;
        --normal-font-size: 1rem;
    }
}

/*===== BASE =====*/
*, ::before, ::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: #352F44;
}

.toggle-password {
    font-size: large;
}

h1 {
    margin: 0;
}

a {
    text-decoration: none;
}

.fa {
    font-size: 18px !important;
}

img {
    max-width: 100%;
    height: auto;
}
/*===== FORM =====*/
.l-form {
    position: relative;
    height: calc(100vh - 25px);
    overflow: hidden;
}

.form__div-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

/*=== Shapes ===*/
.shape1,
.shape2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.shape1 {
    top: -7rem;
    left: -3.5rem;
    background: linear-gradient(180deg, #3e4399 0%, rgba(21, 52, 72, 0) 100%);
}

.shape2 {
    bottom: -6rem;
    right: -5.5rem;
    background: linear-gradient(180deg, #3e4399 0%, rgba(21, 52, 72, 0) 100%);
    transform: rotate(180deg);
}
/*=== Form ===*/
.form {
    height: 100vh;
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.login-logo {
    justify-content: center;
    display: ruby;
}

.form__content {
    width: 290px;
}

.form__img {
    display: none;
}

.form__title {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 4rem;
    text-align: center;
    color: #3e4399;
}

.form__div {
    position: relative;
    display: grid;
    grid-template-columns: 7% 93%;
    margin-bottom: 1rem;
    padding: .25rem 0;
    border-bottom: 1px solid var(--text-color);
}
    /*=== Div focus ===*/
    .form__div.focus {
        border-bottom: 1px solid var(--first-color);
    }

.form__div-one {
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.form__icon {
    font-size: 1.5rem;
    color: var(--text-color);
    transition: .3s;
}
/*=== Icon focus ===*/
.form__div.focus .form__icon {
    color: #352F44;
}

.form__label {
    display: block;
    position: absolute;
    left: .75rem;
    top: .25rem;
    font-size: var(--normal-font-size);
    color: var(--text-color);
    transition: .3s;
    font-weight: 500;
}
/*=== Label focus ===*/
.form__div.focus .form__label {
    top: -1.5rem;
    font-size: .900rem;
    color: #3e4399;
    font-weight: 600
}

.form__div-input {
    position: relative;
    margin-left: 5px;
}

.form__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-weight: 500;
    background: none;
    padding: .5rem .75rem;
    font-size: 1.2rem;
    color: #352F44;
    transition: .3s;
}

.form__forgot {
    display: block;
    text-align: right;
    margin-bottom: 2rem;
    font-size: var(--normal-font-size);
    color: var(--text-color);
    font-weight: 500;
    transition: .5;
}

    .form__forgot:hover {
        color: var(--first-color);
        transition: .5s;
    }

.form__button {
    width: 100%;
    padding: 1rem;
    font-size: var(--normal-font-size);
    outline: none;
    border: none;
    margin-bottom: 1rem;
    background-color: #3e4399;
    color: #fff;
    border-radius: .5rem;
    cursor: pointer;
    transition: .3s;
    font-family: "Poppins", sans-serif;
    display: block;
    text-align: center;
}

    .form__button:hover {
        box-shadow: 0px 15px 36px rgba(0,0,0,.15);
        box-shadow: rgba(53, 47, 68, 0.60) 0px 2px 4px 0px, rgba(53, 47, 68, 0.60) 0px 2px 16px 0px;
        letter-spacing: 1px;
    }

.form__button_staff {
    width: 100% !important;
    padding: 1rem;
    font-size: var(--normal-font-size);
    outline: none;
    border: 1px dashed #352F44;
    margin-bottom: 0.5rem;
    background-color: transparent;
    color: #352F44;
    border-radius: .5rem;
    cursor: pointer;
    transition: .3s;
    font-family: "Poppins", sans-serif;
    display: block;
    text-align: center;
}

    .form__button_staff:hover {
        box-shadow: 0px 15px 36px rgba(0,0,0,.15);
        box-shadow: rgba(53, 47, 68, 0.60) 0px 2px 4px 0px, rgba(53, 47, 68, 0.60) 0px 2px 16px 0px;
        letter-spacing: 1px;
    }

/*=== Form social===*/
.form__social {
    text-align: center;
}

.form__social-text {
    display: block;
    font-size: var(--normal-font-size);
    margin-bottom: 1rem;
}

.form__social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-right: 1rem;
    padding: .5rem;
    background-color: var(--text-color);
    color: #fff;
    font-size: 1.25rem;
    border-radius: 50%;
}

    .form__social-icon:hover {
        background-color: var(--first-color);
    }
/*===== MEDIA QUERIS =====*/

@media screen and (min-width: 1024px) {
    .form__content {
        margin-left: 60px !important;
    }
}


@media screen and (min-width: 968px) {
    .shape1 {
        width: 400px;
        height: 400px;
        top: -11rem;
        left: -6.5rem;
    }

    .shape2 {
        width: 300px;
        height: 300px;
        right: -6.5rem;
    }

    .form {
        grid-template-columns: 1.5fr 1fr;
        padding: 0 2rem;
    }

    .form__content {
        width: 320px;
        font-size: 12px;
    }

    .form__img {
        display: block;
        width: 700px;
        justify-self: center;
    }
}



@media screen and (max-width: 768px) {
    .form {
        padding: 20px;
    }

    .form__title {
        font-size: 1.5rem;
    }

    .title {
        font-size: 100%;
    }

    .form__label {
        font-size: 0.9rem;
    }

    .form__input {
        font-size: 0.9rem;
    }

    .form__button {
        font-size: 12px;
    }

    .images {
        height: 100px !important;
    }
}

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

    .form {
        border-radius: 0;
        box-shadow: none;
    }

    .title {
        font-size: 100%;
    }

    .form__title {
        font-size: 1.3rem;
    }

    .form__label {
        font-size: 0.8rem;
    }

    .form__input {
        font-size: 0.8rem;
        padding: 8px;
    }

    .form__button {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

@media screen and (min-width:1200px) {
    form {
        zoom: 85% !important;
    }

    .form_content {
        margin-left: 100px !important;
    }
}
