2024-01-17 13:42:30 +01:00
|
|
|
body{
|
|
|
|
background-image:url("../img/background.svg");
|
|
|
|
}
|
|
|
|
|
2024-01-17 10:22:00 +01:00
|
|
|
main{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
h1{
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
form{
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
|
|
width: 50%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
size: 10px;
|
|
|
|
box-shadow: 0 40px 60px rgba(0,0,0,0.7);
|
|
|
|
border-radius: 20px;
|
|
|
|
margin: 10vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
form div {
|
|
|
|
margin: 2%;
|
|
|
|
}
|
|
|
|
|
2024-01-17 13:42:30 +01:00
|
|
|
input[type=text]:focus{
|
|
|
|
border: 2px solid red;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|