*{
    margin:0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    background: #10263c;
}
.container{
    position: absolute;
    top: 0;
    width: 70%;
    height: 80vh;
    border: 3px solid #eee;
    margin: 50px 0px 0px 0px;
    overflow: hidden;
    box-shadow: 0px 0px 10px #eee;
    border-radius: 5px;
}
h3.access{
    font-size: 2em;
}
.form-box{
    position: absolute;
    top:0;
    width:50%;
    height: 100%;
    background: transparent;
    margin:0px 0px 0px 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.input-box{
    width:100%;
    height: 40px;
    background: transparent;
    margin: 20px 0px 0px 0px;
}
.input-box input{
    width:100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    border-bottom: 2px solid #fffcfc;
}
.input-box label{
    position: relative;
    top:-30px;
    color: white;
    transform: translate(-30px);
    transition: .5s;
}
.input-box input:focus~label,
.input-box input:valid~label{
    top:-50px;
    transform: translate(-50px);
}
.input-box i{
    position: absolute;
    right: 40px;
    color: white;
    transform: translate(-30px);
   
}
i{
    margin-top:-30px;
}
.btn{
    position: relative;
    width: 100%;
    height: 40px;
    border-radius: 40px;
    margin: 20px 0px 20px 0px ;
    font-size: 20px;
    font-weight: 540;
    color: black;
    background: #fffcfc;
}
.container .no-account{
    text-align: center;
    color:#f2aa4c
}
.container p a{
    text-decoration: none;
    color: #f2aa4c;

}
.container p a:hover{
    text-decoration: underline;
}
.container h2{color:#fbfbfb}
.container .content{
   
    top:0;
    width:50%;
    height:100%;
}
.content .heading{
    position: absolute;
    top:120px;
    left:50px;
    color:#10263c;

}
.content .access{
    position: absolute;
    top:200px;
    left:50px;
    color:#10263c
}
.content .website-link{
    position: absolute;
    bottom:30px;
    left: 50px;
    text-decoration: none;
    color:#10263c
}
.content .website-link:hover{
    text-decoration: underline;
}
.rotate-color{
    background: #f2aa4c;
    position: absolute;
    top:-140px;
    left:-250px;
    width: 850px;
    height: 450px;
    transform: rotate(120deg) skew(10deg);
    border-top: 3px solid #f2aa4c;
}
