1
0
forked from noxious/client

98 lines
2.0 KiB
SCSS

#bg-img {
height: 100vh;
width: 100%;
position: absolute;
z-index: -1;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
}
.content-wrapper {
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: column;
.content-elements {
margin: 5rem 0;
width: inherit;
display: flex;
flex-direction: column;
gap: 1.5rem;
.login-form {
width: inherit;
form {
display: grid;
gap: 1rem;
width: inherit;
.form-field {
display: flex;
flex-direction: column;
background-color: rgba(255, 255, 255, 0.5);
border-radius: 3px;
min-width: 25rem;
margin: 0 auto;
label {
color: #000;
background-color: rgba(255, 255, 255, 0.5);
padding: 0.25rem 0.25rem;
font-size: 0.875rem;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
input {
background-color: transparent;
border: none;
padding: 0.3rem 0.25rem;
font-size: 0.875rem;
&:focus-visible {
outline: none;
}
}
}
}
}
.row-buttons {
display: flex;
justify-content: center;
gap: 0.5rem;
.button {
padding: 0.8rem 0;
min-width: 6.25rem;
text-align: center;
position: relative;
font-size: 0.80rem;
background-color: rgba(71, 65, 230, 0.75);
border: rgba(255, 255, 255, 0.35) 1px solid;
border-radius: 5px;
span {
color: white;
margin: auto;
}
&:hover {
background-color: rgba(123, 118, 255, 0.75);
cursor: pointer;
}
}
}
}
}
.main-title {
margin-top: 7rem;
text-align: center;
font-size: 3rem;
color: #FFF;
text-shadow: -1px -1px 0 gray, 1px -1px 0 gray, -1px 1px 0 gray, 1px 1px 0 gray;
}