pipicar/resources/assets/sass/components/log-reg-container.scss

149 lines
3.7 KiB
SCSS

.log-reg-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 99999;
display: flex;
justify-content: flex-start;
background-image: url('../../img/main-bg-full.jpg');
background-position: center;
background-size: cover;
padding: 2rem;
.log-reg-content{
width: 100%;
max-width: 500px;
height: calc(100vh - 4rem);
background-color: #fff;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 50px;
overflow: auto;
border-radius: 25px;
-webkit-box-shadow: 1px -2px 17px -5px rgba(179, 179, 179, 0.76);
-moz-box-shadow: 1px -2px 17px -5px rgba(179, 179, 179, 0.76);
box-shadow: 1px -2px 17px -5px rgba(179, 179, 179, 0.76);
.reset-container {
margin: 0 0 15px;
padding: 0;
display: flex;
justify-content: flex-end;
align-items: center;
a {
text-decoration: none;
color: $gray-color;
padding: 0;
transition: all 0.3s ease-in-out;
font-size: 0.875rem;
text-align: end;
}
a:hover {
color: $secondary-color;
}
}
.btn {
width: 100%;
}
.logo-log {
width: 170px;
height: 40.5px;
}
.header-phone {
font-size: 16px;
color: #01b0e8;
display: inline-block;
font-weight: 700;
margin-left: 10px;
text-decoration: none;
}
.dropdown-trigger {
text-transform: uppercase;
text-decoration: none;
height: 49px;
padding: 0 20px;
display: flex;
align-items: center;
cursor: pointer;
justify-content: center;
transition: 0.15s all ease;
font-size: 1rem;
&:hover {
color: $primary-color;
}
img {
width: 20px;
height: 20px;
margin: 0 8px;
}
}
.dropdown-trigger::after {
display: inline-block;
margin-left: .255em;
vertical-align: .255em;
content: "";
border-top: .3em solid;
border-right: .3em solid transparent;
border-bottom: 0;
border-left: .3em solid transparent;
}
.dropdown-menu {
img {
width: 20px;
height: 20px;
margin: 0 8px;
}
.dropdown-menu {
position: absolute;
z-index: 1000;
display: none;
min-width: 10rem;
padding: .5rem 0;
margin: 0;
font-size: 1rem;
color: #212529;
text-align: left;
list-style: none;
background-color: #fff;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, .15);
border-radius: .25rem;
}
.dropdown-item {
padding: 5px 10px 5px 17px;
display: flex;
align-items: center;
color: $gray-color;
font-weight: 700;
transition: 0.15s all ease;
&:hover {
background-color: #01b0e836;
color: $text-color;
}
}
}
}
form{
margin: 100px 0;
}
.logo-log{
width: 150px;
height: auto;
}
}