@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
}
body{
    /*background: url(images/bg.png);
    background-size: cover;*/
    margin: 0px 0px;
    padding: 0px 0px;
}
.first-box
{
    background-color: lightgray;
    height: 100vh;
    width: 100vw;
    display: flex;
}
.left-box{
    background-color:#ff6000;
    width: 60vw;
    height: 100vh;

    display: flex;
    justify-content: left;
    align-items: center;

    .intro-content{
        margin-left: 5vw;

        h1{
            font-size: 40px;
            font-weight: bolder;
            color: white;
            margin-bottom: 20px;
        }

        .login-as
        {
            padding: 10px;
            color: white;
            background-color: #ff6000;
            font-size: 20px;
            font-weight: 600;
            height:auto;
            border-radius: 10px;
            border: 0px;
            cursor: pointer;
            text-decoration: none;
            
        }
        .login-as:hover{
            background-color: #ffaa00;
        }
        .on{
            background-color: #ffaa00;
        }
    }

    

}
.right-box{
    background-color: white;
    width:40vw;
    height:100vh;

    display: flex;
    justify-content: center;
    align-items: center;


    .login
    {
    
            display: block;


            label
            {
                width:200px;
            }

    }

    .signup
    {
            display: none;

            label
            {
                width:250px;
            }
    }

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

    h1
    {
            font-size: 40px;
            margin-bottom: 20px;
            font-weight: bolder;
    }

    .inputs
    {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: row;
            margin-bottom: 20px;
    

            input
            {
                padding: 10px 10px;
                border-radius: 10px;
                border: 2px solid black;
                font-size: 15px;
                font-weight: 400;
                width:180px;
                color: black;
                background: transparent;
                transition: 0.2s;
            }

            label
            {
                font-size: 24px;
                padding: 5px 5px;
            }

            .submit-field
            {
                font-weight: 600;
                cursor: pointer;
                background-color: white;
                color:#ff6000;
                border: 2px solid #ff6000;
            }

            .submit-field:hover
            {
                background-color: #ffaa00;
                color:white;
                border:0px;
            }

            .submit-field-1
            {
                font-weight: 600;
                cursor: pointer;
                margin-right: 20px;
                background-color: #ff6000;
                color:white;
                border: 2px solid #ff6000;
            }
            .submit-field-1:hover
            {
                background-color: #ffaa00;
                border: 0px;

            }

            datalist{
                display: none;
            }

            

    }


    .bottom-line a
    {
            color: gray;
            text-decoration: none;
    }
    .bottom-line a:hover
    {
            text-decoration: underline;
    }

}



/*
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
}
.box-1{
    width: 450px;
    height: 500px;
    background: #fff;
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 2px 2px 15px 2px rgba(0,0,0,0.1),
                -2px -0px 15px 2px rgba(0,0,0,0.1);
    z-index: 9;
}
.box-2{
    display: none;
    position:absolute;
    width: 450px;
    height: 500px;
    background: #fff;
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    
    box-shadow: 2px 2px 15px 2px rgba(0,0,0,0.1),
                -2px -0px 15px 2px rgba(0,0,0,0.1);
    transform: rotate(-5deg);
    z-index: 10;
}
.wrapper{
    position: absolute;
    width: 455px;
    height: 500px;
    border-radius: 30px;
    background: rgba(255,255,255,0.53);
    box-shadow: 2px 2px 15px 2px rgba(0,0,0,0.115),
                -2px -0px 15px 2px rgba(0,0,0,0.054);
    transform: rotate(5deg);
}

.header-2{
    margin-bottom: 20px;
}

.header{
    margin-bottom: 50px;
}
.header header,
.header-2 header{
    display: flex;
    justify-content: right;
}
header img{
    width: 25px;
}
.header p,
.header-2 p{
    font-size: 25px;
    font-weight: 800;
    margin-top: 10px;
}
.input-box{
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    position: relative;
}
.input-box-2{
    display: flex;
    flex-direction: column;
    margin: 2px 0;
    position: relative;
}
i{
    font-size: 22px;
    position: absolute;
    top: 38px;
    right: 12px;
    color: #595b5e;
}
input{
    height: 40px;
    border: 2px solid rgb(153,157,158);
    border-radius: 7px;
    margin: 7px 0;
    outline: none;
}
.input-field{
    font-weight: 500;
    padding: 0 10px;
    font-size: 17px;
    background: transparent;
    transition: all .3s ease-in-out;
}
.color{
    color: #333;
}
.input-field:hover,
.input-field:focus{
    border:2px solid rgb(89,53,180);
}
.color:focus ~ i,
.color:hover ~ i,
.color:focus,
.color:hover{
    color: rgb(89,53,180);
}
.input-submit{
    margin-top: 20px;
    background: #1e263a;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.input-submit-2{
    margin-top: 5px;
    background: #1e263a;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.input-submit:hover,
.input-submit-2:hover{
    background: rgb(89,53,180);
}
.bottom{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 25px;
}
.bottom-2{
    display: flex;
    flex-direction: row;
    justify-content: right;
    margin-top: 5px;
}
.bottom span a{
    color: #727374;
    text-decoration: none;
}
.bottom span a:hover,
.bottom span a:focus{
    color: rgb(89,53,180);
    text-decoration: underline;
}
    */
