103 lines
1.6 KiB
CSS
103 lines
1.6 KiB
CSS
{
|
|
margin: 0
|
|
;
|
|
padding: 0
|
|
;
|
|
box-sizing: border-box
|
|
;
|
|
font-family: "Poppins", sans-serif
|
|
;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
background: url("../../images/LoginBackround.jpg");
|
|
}
|
|
|
|
.wrapper {
|
|
width: 420px;
|
|
background: lightgrey;
|
|
color: #111111;
|
|
border-radius: 15px;
|
|
padding: 45px 25px;
|
|
}
|
|
|
|
.wrapper h1 {
|
|
font-size: 36px;
|
|
text-align: center;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.wrapper .input-box {
|
|
position: relative;
|
|
width: 89%;
|
|
height: 50px;
|
|
margin: 20px 1px;
|
|
}
|
|
|
|
.input-box input {
|
|
width: 100%;
|
|
height: 100%;
|
|
outline: none;
|
|
border: 2px solid rgba(255, 255, 255, .2);
|
|
border-radius: 40px;
|
|
font-size: 16px;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.wrapper .input-box input::placeholder {
|
|
color: #111111;
|
|
}
|
|
|
|
.input-box i {
|
|
position: absolute;
|
|
left: 390px;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
font-size: 20px;
|
|
}
|
|
|
|
.wrapper .remember-forgot {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
font-size: 16.5px;
|
|
margin: 10px 20px;
|
|
}
|
|
|
|
.remember-forgot a {
|
|
color: #111111;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.remember-forgot a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.wrapper .register-link {
|
|
font-size: 14px;
|
|
text-align: center;
|
|
}
|
|
|
|
.register-link a {
|
|
color: #111111;
|
|
text-decoration: none;
|
|
margin: -1px 6px;
|
|
}
|
|
|
|
.register-link a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.wrapper .btn {
|
|
width: 100%;
|
|
height: 50px;
|
|
border: none;
|
|
outline: none;
|
|
margin-top: 40px;
|
|
border-radius: 40px;
|
|
cursor: pointer;
|
|
}
|