﻿/*.main-container {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    min-height: 100vh;
}
.main-inner {
    display: block;
    height: auto;
}
.main-form {
    padding-bottom: 10px !important;
    padding: 2.5rem;*/
/*background: #fff;*/
/*border-radius: 16px;
    margin: auto;
    width: 33rem;
    height:700px;
}
.login_head{
    color:black;
    font-size:3.25rem !important;
}
.line-style {
    width: 5rem;
    left: 1px;
    height: 1px;
    position: relative;
    background-color: grey;
    border-radius: 25px;
    margin : 11px 0px 0px 0px;
    
}
.companyimage{
    margin:10px;
}
.login-with {
    margin-top: 15px;
}
.line-div{
    padding-left:4px;
}
.google-login {*/
/*background-color: #ffffff*/
/*border: 1px solid grey;
    border-radius: 10px;
}
.social-icon{
    height:35px;
 }
.signin-form{
    margin-top:20px;
}*/
/*===== GOOGLE FONTS =====*/
/*@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@500&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Arima&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Galdeano&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Exo+2&display=swap');
/*===== VARIABLES CSS =====*/

/*=== Colores ===*/
:root {
    --first-color: #12192C;
    --text-color: #8590AD;
}

/*=== Fuente y tipografia ===*/
:root {
    --body-font: 'Exo 2', 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: 1.1rem;
    }
}

/*===== BASE =====*/
*, ::before, ::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    color: var(--first-color);
}

h1 {
    margin: 0;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.l-form {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.shape1,
.shape2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.shape1 {
    top: -7rem;
    left: -3.5rem;
    background: linear-gradient(180deg, var(--first-color) 0%, rgba(196,196,196,0) 100%);
}

.shape2 {
    bottom: -6rem;
    right: -5.5rem;
    background: linear-gradient(180deg, var(--first-color) 0%, rgba(196,196,196,0) 100%);
    transform: rotate(180deg);
}

.form {
    height: 100vh;
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.dusshera {
    background-image: url('../SVG/Dusshera (8).png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.dusshera_hr {
    background-image: url('../SVG/Dusshera (10).png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

@media (max-width: 768px) {
    .dusshera, .dusshera_hr {
        background-image: url('../SVG/Dusshera_Mobile.png');
        background-size: cover;
        background-position: center;
    }
}




.form__hr {
    height: 100vh;
    display: grid;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.companyimage {
    position: absolute;
    max-height: 100px;
    left: 30px;
    top: 10px;
    mix-blend-mode: multiply;
}

.form__content {
    width: 290px;
    margin-top: -90%;
}


.form__img {
    display: none;
}

.form__title {
    font-family: var(--body-font);
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.app_box {
    display: none;
    justify-content: center;
    align-items: center;
}

.app_box1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hr_side {
    margin-left: 0px;
    margin-top: 25%
}

.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: 0.5rem;
}

.form__icon {
    font-size: 1.5rem;
    color: var(--text-color);
    transition: .3s;
}
/*=== Icon focus ===*/
.form__div.focus .form__icon {
    color: var(--first-color);
}

.form__label {
    display: block;
    position: absolute;
    left: .75rem;
    top: .25rem;
    font-size: var(--normal-font-size);
    color: var(--text-color);
    transition: .3s;
}
/*=== Label focus ===*/
.form__div.focus .form__label {
    top: -1.5rem;
    font-size: .875rem;
    color: var(--first-color);
}

.form__div-input {
    position: relative;
}

.form__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: none;
    padding: .5rem .75rem;
    font-size: 1.2rem;
    color: var(--first-color);
    transition: .3s;
}

.form__forgot {
    display: block;
    text-align: right;
    margin-bottom: 2rem;
    font-size: var(--normal-font-size);
    color: var(--text-color);
    font-weight: 800;
    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: var(--first-color);
    color: #fff;
    border-radius: .5rem;
    cursor: pointer;
    transition: .3s;
}

    .form__button:hover {
        box-shadow: 0px 15px 36px rgba(0,0,0,.15);
    }

/*=== 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: 40px;
    height: 40px;
    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);
        color: #fff;
    }
/*===== MEDIA QUERIS =====*/
@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__hr {
        grid-template-columns: 1fr 1.5fr;
        padding: 0 2rem;
    }

    .form__content {
        width: 320px;
        margin-top: 0;
    }

    .form__img {
        display: block;
        width: 700px;
        justify-self: center;
        margin-left: auto;
        margin-right: auto;
    }

    .app_box {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .app_box1 {
        display: none;
        justify-content: center;
        align-items: center;
    }

    .hr_side {
        margin-left: 30%;
        margin-top: 0px;
    }

    .companyimage {
        position: absolute;
        max-height: 150px;
        left: 30px;
        top: 10px;
        mix-blend-mode: multiply;
    }

    .form__title {
        font-family: var(--body-font);
        font-size: 27px;
        font-weight: 500;
        margin-bottom: 1rem;
        margin-top: 2rem;
    }
}

.form__button01 {
    width: 100%;
    padding: 1rem;
    font-size: var(--normal-font-size);
    outline: none;
    border: none;
    margin-bottom: 1rem;
    background-color: #055396;
    color: #fff;
    border-radius: .5rem;
    cursor: pointer;
    transition: .3s;
    display: block;
    text-align: center;
}

    .form__button01:hover {
        box-shadow: 0px 15px 36px rgba(0,0,0,.15);
        color: #fff !important
    }

@media (max-width:375px) {
    .form__title {
        font-family: var(--body-font);
        font-size: 25px;
        font-weight: 500;
        margin-bottom: 1rem;
        margin-top: 5px;
    }

    .form__forgot {
        display: block;
        text-align: right;
        margin-bottom: 1rem;
        font-size: var(--normal-font-size);
        color: var(--text-color);
        font-weight: 800;
        transition: .5s;
    }

    .form__content {
        width: 290px;
        margin-top: -24% !important;
    }
}
