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.

100 lines
1.6 KiB

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
section {
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100vh;
overflow: hidden;
}
.container {
position: absolute;
left: -10%;
width: 120%;
height: 100vh;
background: url("../img/bg.jpg");
}
.container #scene .layer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
}
.container .layer img {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.container .layer img.moon {
background-blend-mode: screen;
}
.container1 {
position: absolute;
top: 50%;
left: 50%;
border-radius: 10px;
transform: translate(-50%, -50%);
background-color: #ffffff;
padding: 50px;
border-radius: 5px;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
h2 {
margin: 0;
padding-bottom: 20px;
text-align: center;
}
label {
display: block;
margin-bottom: 10px;
}
input[type="text"],
input[type="password"] {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: none;
border-radius: 5px;
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}
.password-container {
position: relative;
}
input[type="submit"] {
background-color: #4CAF50;
color: #ffffff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
input[type="submit"]:hover {
background-color: #3e8e41;
}
.c1 {
border-radius: 5px;
background-color: rgba(0, 191, 255, 0.1);
}