Your IP : 216.73.216.48
.form-field {
font-family: 'Asap', sans-serif;
display: block;
border-radius: 5px;
font-size: 16px;
background: #f3f3f3;
width: 100%;
border: 0;
padding: 10px 10px;
border: 1px solid #ccc;
transition: 0.4s;
box-sizing: border-box;
letter-spacing: 1px;
}
.form-field ~ .focus-border:before,
.form-field ~ .focus-border:after{content: ""; position: absolute; top: -1px; left: 50%; width: 0; height: 2px; background-color: #005ec2; transition: 0.4s;}
.form-field ~ .focus-border:after{top: auto; bottom: 0;}
.form-field ~ .focus-border i:before,
.form-field ~ .focus-border i:after{content: ""; position: absolute; top: 50%; left: 0; width: 2px; height: 0; background-color: #005ec2; transition: 0.6s;}
.form-field ~ .focus-border i:after{left: auto; right: 0;}
.form-field:focus ~ .focus-border:before,
.form-field:focus ~ .focus-border:after,
.has-content.form-field ~ .focus-border:before,
.has-content.form-field ~ .focus-border:after{left: 0; width: 100%; transition: 0.4s;}
.form-field:focus ~ .focus-border i:before,
.form-field:focus ~ .focus-border i:after,
.has-content.form-field ~ .focus-border i:before,
.has-content.form-field ~ .focus-border i:after{top: -1px; height: 100%; transition: 0.6s;}
.form-field ~ label{position: absolute; left: 14px; width: 100%; top: 10px; color: #aaa; transition: 0.3s; z-index: -1; letter-spacing: 0.5px;}
.form-field:focus ~ label, .has-content.form-field ~ label{top: -18px; left: 0; font-size: 12px; color: #005ec2; transition: 0.3s;}
.button-wrap {
position: relative;
text-align: center;
margin-top: 10px;
margin-bottom: 10px;
}
.button-label {
display: inline-block;
padding: 8px 24px;
width:45%;
margin: 0.5em;
cursor: pointer;
color: #292929;
border-radius: 0.25em;
background: #efefef;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 -3px 0 rgba(0, 0, 0, 0.22);
transition: 0.3s;
user-select: none;
}
.button-label h1 {
font-size: 24px;
font-family: "Lato", sans-serif;
}
.button-label:hover {
background: #d6d6d6;
color: #101010;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 -3px 0 rgba(0, 0, 0, 0.32);
}
.button-label:active {
transform: translateY(2px);
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0px -1px 0 rgba(0, 0, 0, 0.22);
}
@media (max-width: 40em) {
.button-label {
padding: 0em 1em 3px;
margin: 0.25em;
}
}
#guest-button:checked + .button-label {
background: #2ecc71;
color: #efefef;
}
#guest-button:checked + .button-label:hover {
background: #29b765;
color: #e2e2e2;
}
#teacher-button:checked + .button-label {
background: #2ecc71;
color: #efefef;
}
#teacher-button:checked + .button-label:hover {
background: #29b765;
color: #e2e2e2;
}
.stu-button:checked + .button-label {
background: #4183d7;
color: #efefef;
}
.stu-button:checked + .button-label:hover {
background: #2c75d2;
color: #e2e2e2;
}