@import url('https://fonts.googleapis.com/css2?family=La+Belle+Aurore&family=Lato:wght@400;700&family=Ubuntu:wght@500&display=swap');

:root {
    --debug: 1px solid red;
  /*-----primary colors--------*/
    --color-1: #18B887;
    --color-2: #41C19A;
    --color-3: #6ACAAD;
    --color-4: #93D3BF;
    --color-5: #BCDCD2;
    --color-6: #B7E4E2;
    --color-7: #E1F6F0;
    --color-8: #E5E5E5;
    --color-9: #F7FBFA;
    --color-text-1: rgb(0, 0, 0);
    --color-text-2:  rgba(0, 0, 0, 0.568);
    --color-text-3: #3E4958;
  }
  
    /*-----------BODY CONTAINER------------*/
  
    *,
    *:before,
    *:after{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Lato';
    }

    .Login-Page {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 100vh;
    }

    .Login-Left {
      
    }

    .Login-Left form h1 {
        font-family: La Belle Aurore;
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        line-height: 93px;
        letter-spacing: 0;
        padding-top: 1em; 

        color: var(--color-1);
    }

    .Login-Left form h2 {
        height: 40px;
        width: 321px;
        margin-top: 1em;
        
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: 48px;
        letter-spacing: 0;

        color: #443742;
    }

    .Login-Left form h3 {
        padding-top: 2em;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 29px;
        letter-spacing: 0em;
        
        color:var(--color-text-1);
    }

    form{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .input-box{
        display: flex;
        flex-direction: column;
    }

    .input-box input {
        width: 400px;
        height: 50px;
        margin-top: 2em;
        padding-left: 1em;

        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 29px;

        color: var(--color-1);
        
        background: #EFF7F6;
        opacity: 0.5;
        border: 1px solid #443742;
        box-sizing: border-box;
        box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        
    }

    .input-box button {
        width: 400px;
        height: 50px;
        margin-top: 2em;
        cursor: pointer;
        
        font-style: normal;
        font-weight: 600;
        font-size: 14px;
        line-height: 29px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        
        color: #FFFFFF;

        background: var(--color-1);
        border-radius: 10px;
        border: none;
    }

    .login-link{
        color: var(--color-1);
    }

    .tx-16{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;

        margin-top: 1em;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;

        color: var(--color-text-1);
    }

    a{
        text-decoration: none;
    }

    .Login-Right {
        height: 100vh;
        
        background-image:linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url(/images/image\ 2.png);
        background-size: 100% 100vh;
        background-repeat: no-repeat;
        background-position: center;
    }

    .Login-Right h1 {
        width: 460px;
        height: 174px;
        
        font-family: 'Lato';
        font-style: normal;
        font-weight: bold;
        font-size: 45px;
        line-height: 58px;
        text-align: center;
        margin: auto;
        padding-top: 4em;
        
        color: #EFF7F6;
    }

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

        .Login-Page {
            display: flex;
            flex-direction: column-reverse;
            align-items: flex-start;
            justify-content: space-evenly;
            margin: 0 auto;
        }
    
        .Login-Left {
          margin: auto;
        }
    
        .Login-Left form h1 {
            font-size: 30px;
            line-height: 50px;
            padding-top: .5em; 
    
            color: var(--color-1);
        }
    
        .Login-Left form h2 {
            margin-top: .5em;
            
            font-size: 24px;
            line-height: 10px;
        }
    
        .Login-Left form h3 {
            padding-top: 0;
            font-size: 14px;
            line-height: 10px;
        }
    
        form{
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
    
        .input-box{
            display: flex;
            flex-direction: column;
        }
    
        .input-box input {
            width: 250px;
            height: 40px;
            margin-top: 2em;
            padding-left: 1em;
    
            font-size: 14px;    
        }
    
        .input-box button {
            width: 250px;
            height: 40px;
            margin-top: 2em;
        }
    
        .login-link{
            color: var(--color-1);
        }
    
        .tx-16{
            display: flex;
            flex-direction: row;
            align-items: center;
    
            margin: 10px auto;
            font-size: 14px;
        }
    
        .Login-Right {
            display: none;
        }
    
        .Login-Right h1 {
            width: auto;
            font-size: 40px;

            padding-top: 1em;
        } 


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

        .Login-Left form h1{
           line-height: 80px;
           padding: 0;
        }

        .input-box input{
            width: 300px;
        }
            
        .input-box button{
            width: 300px;
        }

        .Login-Left{
            width: 100%;
        }

        .Login-Right {
            width: 100%;
            height: 100%;
        }

        .Login-Right h1{
            width: 380px;
        }

    }