@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Dosis&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap');
*{
	margin:0;
	padding:0;
}
body{
	background-color: #c4d283;
    font-family: 'Roboto Condensed', sans-serif;
}
#login-container{
    display: flex;
    align-items: center;
    justify-content: center; 
    height: 94vh;       
}
.login-form{
    width: 250px;
    height: 250px;
    background-color: #423a01;
    box-shadow: 2px 3px 12px 1px #111;
    padding:50px 20px;
}
h1{
    font-size: 26px;
    font-weight: 500;
    text-align: center;
    color: #95a54d;
}
.input-label{
    width: 100%;
    position: relative;
}
.input-style{
    width: 100%;
    border: none;
    outline: none;
    background-color: #423a01;
    border-bottom: 1px solid #bfcd81;
    padding-top: 15px;
    margin: 10px 0px;
    color: #bfcd81;
}
.input-label .label{
    position: absolute;
    color: #828e4b;
    font-size: 14px;
    top: 20px;
    left: 0;
    transition: 500ms;
}
.label-radio{
    color: #828e4b;
}
.submit-style{
width: 100%;
padding: 7px;
margin: 35px 0px;
border: none;
outline: none;
background-color: #bfcd81;
font-family: 'Roboto Condensed', sans-serif;
color: #4d5d05;
font-size: 20px;
box-shadow: 2px 3px 12px 1px #111;
cursor: pointer;
}
.submit-style:hover{
background-color: #b1be75;
box-shadow: 2px 3px 12px 2px #000;
cursor: pointer;
}
.input-focus +.label{
top:5px;
font-size: 11px;
}