Files
luser/luser/templates/styles/main.css
T
2025-10-23 00:59:05 +02:00

77 lines
1.0 KiB
CSS

html {
background-color: #181715;
color: #fff;
}
form {
display: flex;
flex-direction: column;
gap: 16px;
max-width: 360px;
margin: 50px auto;
}
button {
height: 30px;
margin-top: 30px;
background-color: #262a2b;
border: 1px solid #7b7265;
color: #a1998d;
border-radius: 5px;
text-transform: uppercase;
letter-spacing: 2px;
}
button:hover {
opacity: 0.9;
cursor: pointer;
}
button:active {
opacity: 0.7;
}
input {
height: 25px;
padding: 2px 8px;
border: 1px solid #303436;
border-radius: 5px;
color: #7b7265;
background-color: #262a2b;
outline: none;
}
.container {
margin: 50px auto;
}
.form-input {
display: flex;
flex: 1;
justify-content: space-between;
align-items: center;
}
.captcha {
width: 200px;
margin: 10px auto;
text-align: center;
}
.captcha img {
width: 100%;
height: auto;
}
.hint {
letter-spacing: 2px;
text-transform: uppercase;
font-size: 10px;
text-align: center;
font-weight: 500px;
}
.danger {
color: #bb3131;
}