115 lines
1.4 KiB
CSS
115 lines
1.4 KiB
CSS
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
text-align: center;
|
|
background-color: #fff;
|
|
}
|
|
|
|
header {
|
|
background: #ccc;
|
|
padding: 10px;
|
|
text-align: left;
|
|
}
|
|
|
|
.logo {
|
|
height: 60px;
|
|
}
|
|
|
|
main {
|
|
padding: 50px 20px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 48px;
|
|
margin: 0;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 24px;
|
|
color: #666;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.buttons {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 15px;
|
|
}
|
|
|
|
.btn {
|
|
padding: 10px 25px;
|
|
font-size: 16px;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.btn.green {
|
|
background-color: #28a745;
|
|
}
|
|
|
|
.btn.red {
|
|
background-color: #dc3545;
|
|
}
|
|
|
|
.overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
display: none;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.form-box {
|
|
background: white;
|
|
padding: 30px;
|
|
border-radius: 10px;
|
|
width: 90%;
|
|
max-width: 400px;
|
|
position: relative;
|
|
text-align: left;
|
|
}
|
|
|
|
.form-box h3 {
|
|
text-align: center;
|
|
}
|
|
|
|
.form-box p {
|
|
font-size: 12px;
|
|
text-align: center;
|
|
}
|
|
|
|
.form-box form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.form-box input {
|
|
padding: 10px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.form-box button {
|
|
background: black;
|
|
color: white;
|
|
padding: 10px;
|
|
font-size: 16px;
|
|
border: none;
|
|
margin-top: 10px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.form-logo {
|
|
display: block;
|
|
margin: 20px auto 0;
|
|
height: 40px;
|
|
}
|