Files
SAEWEBJensonVALAylaneSEHL/css/register.css
2025-06-14 19:08:52 +02:00

116 lines
1.9 KiB
CSS

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Josefin Sans", sans-serif;
}
body {
background-image: url('../img/cielprince.png');
background-position: center;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
header{
position: absolute;
left: 15px;
top: 20px;
}
header button{
padding: 20px;
cursor: pointer;
background-color: transparent;
font-size: 20px;
transition: 0.2s;
color: white;
border: 0;
}
header button:hover{
background-color: rgb(122, 97, 179,0.2);
border-radius: 10px;
}
section {
display: inline-block;
}
h2 {
color: white;
font-size: 20px;
margin-bottom: 40px;
text-align: center;
}
/* rentrer les informations */
.box {
margin-bottom: 15px;
}
.info {
display:inline-flex;
justify-content: space-between;
}
.box input {
width: 100%;
padding: 15px;
background-color: transparent;
border: 2px solid white;
color: white;
outline: none;
padding-right: 45px;
}
.box input::placeholder{
color: white;
}
.box i {
position: absolute;
right: 790px;
margin-top: 15px;
color: white;
}
/* -------------------------- */
.but1 {
width: 100%;
border-radius: 20px;
border: 0;
padding: 15px;
font-weight: bold;
cursor: pointer;
transition: 0.2s;
border: 2px solid transparent;
margin-bottom: 15px;
margin-top: 15px;
align-items: center;
}
.but1:hover {
background-color: transparent;
border: 2px solid rgba(255, 255, 255, 0.2);
color: white;
}