2022-12-02 16:11:12 -05:00
|
|
|
* {
|
|
|
|
font-family: "Roboto";
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
background: rgb(8, 152, 255);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.form-box {
|
|
|
|
width: 400px;
|
|
|
|
height: 500px;
|
|
|
|
position: relative;
|
|
|
|
margin: 6% auto;
|
|
|
|
background: #fff;
|
|
|
|
padding: 5px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#title {
|
2022-12-11 08:48:03 -05:00
|
|
|
font-size: 1.7em;
|
2022-12-02 16:11:12 -05:00
|
|
|
margin-bottom: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inputfield {
|
|
|
|
margin: 10px;
|
|
|
|
padding: 8px 8px;
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
border-width: 2px;
|
|
|
|
border-radius: 4px;
|
|
|
|
border-color: gray;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inputfield:focus {
|
|
|
|
outline: none;
|
|
|
|
border-color: #407ce5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.login {
|
|
|
|
font-size: 1em;
|
|
|
|
color: #000;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sumbit-button {
|
|
|
|
width: 50%;
|
|
|
|
height: 40px;
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
margin-top: 35px;
|
|
|
|
border-radius: 28px;
|
|
|
|
|
|
|
|
background: rgb(0, 208, 255);
|
|
|
|
color: white;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
transition: opacity 0.15s;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sumbit-button:hover {
|
|
|
|
opacity: 0.85;
|
|
|
|
}
|
|
|
|
|
|
|
|
#sumbit-button:active {
|
|
|
|
opacity: 0.6;
|
|
|
|
}
|
|
|
|
|
2022-12-11 08:48:03 -05:00
|
|
|
#error_message {
|
2022-12-02 16:11:12 -05:00
|
|
|
color: red;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|