You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
2.4 KiB
111 lines
2.4 KiB
1 year ago
|
@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Share+Tech+Mono&display=swap);
|
||
|
*{
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
font-family: 'Poppins', sans-serif;
|
||
1 year ago
|
color: black;
|
||
1 year ago
|
}
|
||
1 year ago
|
a{
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
1 year ago
|
body{
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
min-height: 100vh;
|
||
1 year ago
|
background: #fff;
|
||
1 year ago
|
}
|
||
|
|
||
|
.container{
|
||
|
position: relative;
|
||
1 year ago
|
width: 500px;
|
||
1 year ago
|
min-height: 500px;
|
||
1 year ago
|
display: inline;
|
||
1 year ago
|
justify-content: center;
|
||
|
align-items: center;
|
||
1 year ago
|
background: #fff;
|
||
|
box-shadow: 10px 10px 20px #fff,
|
||
|
-10px -10px 20px #ccc;
|
||
1 year ago
|
border-radius: 30px;
|
||
|
padding: 50px;
|
||
|
}
|
||
|
form{
|
||
|
position: relative;
|
||
|
width: 100%;
|
||
|
}
|
||
|
.container h3{
|
||
1 year ago
|
color: #000;
|
||
1 year ago
|
font-weight: 600;
|
||
|
font-size: 2em;
|
||
|
width: 100%;
|
||
|
text-align: center;
|
||
|
margin-bottom: 30px;
|
||
|
letter-spacing: 2px;
|
||
|
text-transform: uppercase;
|
||
|
}
|
||
|
.CadreInput
|
||
|
{
|
||
|
position: relative;
|
||
|
width: 100%;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
.CadreInput span{
|
||
|
display: inline-block;
|
||
1 year ago
|
color: #000;
|
||
1 year ago
|
margin-bottom: 10px;
|
||
|
text-transform: uppercase;
|
||
|
letter-spacing: 1px;
|
||
|
font-size: 0.75em;
|
||
1 year ago
|
border-left: 4px solid #000;
|
||
1 year ago
|
padding-left: 4px;
|
||
|
line-height: 1em;
|
||
|
}
|
||
|
.CadreInput .box{
|
||
|
display: flex;
|
||
|
}
|
||
|
.CadreInput .box .icon{
|
||
|
position: relative;
|
||
|
min-width: 40px;
|
||
|
height: 40px;
|
||
1 year ago
|
background-color: #00DBFF;
|
||
1 year ago
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
border-radius: 50%;
|
||
|
margin-right: 10px;
|
||
1 year ago
|
color: #000;
|
||
1 year ago
|
font-size: 1.15em;
|
||
|
}
|
||
|
.CadreInput .box input{
|
||
|
position: relative;
|
||
|
width: 100%;
|
||
|
border: none;
|
||
|
outline: none;
|
||
|
padding: 10px 20px;
|
||
1 year ago
|
border-radius: 10px;
|
||
1 year ago
|
letter-spacing: 1px;
|
||
|
font-size: 0.85em;
|
||
1 year ago
|
border: #00DBFF 2px solid;
|
||
1 year ago
|
}
|
||
|
.CadreInput .box input[type="submit"]{
|
||
1 year ago
|
background-color: #00DBFF;
|
||
1 year ago
|
color: #fff;
|
||
|
cursor: pointer;
|
||
|
text-transform: uppercase;
|
||
|
letter-spacing: 2px;
|
||
|
font-weight: 600;
|
||
|
margin-top: 10px;
|
||
1 year ago
|
border: none;
|
||
1 year ago
|
}
|
||
1 year ago
|
.CadreInput .box input[type="submit"].other{
|
||
|
background-color: #fff;
|
||
|
color: #00DBFF;
|
||
|
margin-right: 15px;
|
||
1 year ago
|
}
|
||
|
.forgot{
|
||
1 year ago
|
color: #000;
|
||
1 year ago
|
letter-spacing: 1px;
|
||
|
font-size: 0.85em;
|
||
|
}
|