158 lines
2.8 KiB
CSS
158 lines
2.8 KiB
CSS
body {
|
|
background-color: #E9F0EE;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.login-box {
|
|
position: relative;
|
|
width: 90%;
|
|
max-width: 500px;
|
|
height: auto;
|
|
background-color: #fff;
|
|
padding: 20px;
|
|
border-radius: 3px;
|
|
-webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.33);
|
|
-moz-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.33);
|
|
box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.33);
|
|
}
|
|
|
|
.lb-header {
|
|
position: relative;
|
|
color: #00415d;
|
|
margin: 5px 5px 10px 5px;
|
|
padding-bottom: 10px;
|
|
border-bottom: 1px solid #eee;
|
|
text-align: center;
|
|
height: 28px;
|
|
}
|
|
|
|
.lb-header a {
|
|
margin: 0 25px;
|
|
padding: 0 20px;
|
|
text-decoration: none;
|
|
color: #666;
|
|
font-weight: bold;
|
|
font-size: 15px;
|
|
-webkit-transition: all 0.1s linear;
|
|
-moz-transition: all 0.1s linear;
|
|
transition: all 0.1s linear;
|
|
}
|
|
|
|
.lb-header .active {
|
|
color: var(--theme-color-dark);
|
|
font-size: 18px;
|
|
}
|
|
|
|
.social-login {
|
|
position: relative;
|
|
width: 100%;
|
|
height: auto;
|
|
padding: 10px 0 15px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.social-login a {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: auto;
|
|
text-decoration: none;
|
|
color: var(--theme-color-dark);
|
|
border: 2px solid #02C0CE;
|
|
padding: 12px;
|
|
border-radius: 20px;
|
|
font-size: 12px;
|
|
text-transform: none;
|
|
margin: 0 3%;
|
|
text-align: center;
|
|
}
|
|
|
|
.social-login a img {
|
|
position: relative;
|
|
width: 20px;
|
|
vertical-align: middle;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.email-login, .email-signup {
|
|
position: relative;
|
|
float: left;
|
|
width: 100%;
|
|
height: auto;
|
|
margin-top: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.u-form-group {
|
|
width: 100%;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.u-form-group input[type="email"],
|
|
.u-form-group input[type="password"] {
|
|
width: calc(100% - 22px);
|
|
max-width: 300px;
|
|
height: 45px;
|
|
outline: none;
|
|
border: 1px solid #ddd;
|
|
padding: 0 10px;
|
|
border-radius: 2px;
|
|
color: #333;
|
|
font-size: 0.8rem;
|
|
-webkit-transition: all 0.1s linear;
|
|
-moz-transition: all 0.1s linear;
|
|
transition: all 0.1s linear;
|
|
}
|
|
|
|
.u-form-group input:focus {
|
|
border-color: #358efb;
|
|
}
|
|
|
|
.u-form-group button {
|
|
width: 50%;
|
|
background-color: #02C0CE;
|
|
border: none;
|
|
outline: none;
|
|
color: #fff;
|
|
font-size: 14px;
|
|
font-weight: normal;
|
|
padding: 14px 0;
|
|
border-radius: 2px;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.forgot-password {
|
|
width: 50%;
|
|
text-align: left;
|
|
text-decoration: underline;
|
|
color: #888;
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.u-form-group input[type="email"],
|
|
.u-form-group input[type="password"] {
|
|
width: calc(100% - 20px);
|
|
}
|
|
|
|
.u-form-group button {
|
|
width: 100%;
|
|
}
|
|
|
|
.forgot-password {
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
}
|