@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;
    --color-text-4: #443742;
  }
  
    /*-----------BODY CONTAINER------------*/
  
    *,
    *:before,
    *:after{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

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

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

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

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

.SignUp-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: var(--color-text-4);
}

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: 40px;
    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 var(--color-text-4);
    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: 40px;
    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;
}

.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{
    color: var(--color-1);
    text-decoration: none;
}

.SignUp-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;
}

.SignUp-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)  {

        .SignUp-Page {
            display: flex;
            flex-direction: column-reverse;
            align-items: flex-start;
            justify-content: space-evenly;
            margin: 0 auto;
        }

        .SignUp-Left {
        margin: auto;
        }

        .SignUp-Left form h1 {
            font-size: 30px;
            line-height: 90px;
            padding-top: .5em; 

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

        .SignUp-Left form h2 {
            margin-top: .5em;
            
            font-size: 24px;
            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: 300px;
            height: 40px;
            margin-top: 1.5em;
            padding-left: 1em;

            font-size: 14px;    
        }

        .input-box button {
            width: 300px;
            height: 40px;
            margin-top: 1em;
        }

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

        .tx-16{
            display: flex;
            flex-direction: row;
            align-items: center;

            margin: 10px auto;
            font-size: 14px;
        }

        .SignUp-Right {
            display: none;
            height: 50vh;
            background-size: cover;
        }

        .SignUp-Right h1 {
            width: auto;
            font-size: 40px;

            padding-top: 1em;
        } 


    
    }

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

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

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

        .SignUp-Left{
            width: 100%;
        }

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

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

    }

