37 lines
672 B
SCSS
37 lines
672 B
SCSS
.signin-form {
|
|
height: 100vh;
|
|
padding-top: 40px;
|
|
background-image: url(../../../assets/fond_signin.png);
|
|
background-position: center;
|
|
}
|
|
|
|
.form-signin {
|
|
width: 500px;
|
|
//max-width: 330px;
|
|
padding: 15px;
|
|
margin: auto;
|
|
background-color: #f0f0f0;
|
|
border-radius: 15px;
|
|
box-shadow: 10px 10px 10px grey;
|
|
margin-top: 25vh;
|
|
}
|
|
|
|
.form-floating:focus-within {
|
|
z-index: 2;
|
|
}
|
|
|
|
input[type="email"] {
|
|
margin-top: 10px;
|
|
margin-bottom: 5px;
|
|
border-bottom-right-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
border-color: red;
|
|
}
|
|
|
|
input[type="password"] {
|
|
margin-bottom: 10px;
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
border-color: red;
|
|
}
|
|
|