FleetCart/Modules/User/Resources/assets/admin/sass/auth.scss
2023-12-03 14:07:47 +00:00

166 lines
2.8 KiB
SCSS

/* resets */
h1,
h2,
h3,
h4,
h5,
h6,
p {
margin: 0;
}
body,
html {
height: 100% !important;
width: 100% !important;
margin: 0;
display: table;
}
body {
font-family: "Inter", sans-serif;
font-weight: 400;
background: #f1f3f7;
display: table-cell;
vertical-align: middle;
}
/* login page */
.login-page {
display: table;
width: 360px;
margin: auto;
}
.login-wrapper {
position: relative;
background: #ffffff;
border-radius: 3px;
padding: 15px;
box-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
z-index: 0;
.bg-blue {
position: absolute;
left: 0;
top: 0;
right: 0;
height: 80px;
background: #0068e1;
overflow: hidden;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
z-index: -1;
.reflection {
position: absolute;
left: -100px;
top: 0;
height: 300px;
width: 300px;
background: linear-gradient(
rgba(255, 255, 255, 0.2),
rgba(255, 255, 255, 0)
);
transform: rotate(45deg);
}
}
.form-inner {
background: #ffffff;
border-radius: 3px;
border: 1px solid #e9e9e9;
margin: 15px 0 0;
padding: 0 15px 10px;
}
.reset-password {
p {
margin-bottom: 20px;
}
.login-form > button {
margin-bottom: 10px;
}
.input-icon {
top: 5px !important;
}
> a {
margin: 10px auto 5px;
}
}
h3 {
margin: 15px 0;
}
.form-group {
position: relative;
label > span {
color: #fc4b4b;
margin-left: 4px;
}
.form-control {
padding-left: 36px;
}
}
button {
display: table;
margin: 20px auto 5px;
padding-left: 60px;
padding-right: 60px;
}
a {
display: table;
margin-top: 10px;
color: #0068e1;
&:hover {
text-decoration: underline;
}
}
}
.reset-password {
button {
padding-left: 30px;
padding-right: 30px;
}
}
@media screen and (max-width: 415px) {
.login-page {
width: 100%;
margin: 0;
padding: 0 15px;
.checkbox {
display: table;
margin: 10px auto 0;
}
a {
display: table;
margin: 10px auto;
}
}
.ltr,
.rtl {
.login-page {
.checkbox,
a {
float: none !important;
}
}
}
}