38 lines
675 B
CSS
38 lines
675 B
CSS
body{
|
|
--coler-primary: #009579;
|
|
--coler-primary-dark: #007f67;
|
|
--coler-secondary: #252c6a;
|
|
--coler-error: #cc3333;
|
|
--coler-success: #4bb544;
|
|
--border-radius: 4px;
|
|
|
|
margin:0;
|
|
height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 18px;
|
|
background: url(./logo\ \(1\).png);
|
|
background-size: cover;
|
|
}
|
|
|
|
|
|
.container {
|
|
--border-radius: 4px;
|
|
width:400px;
|
|
max-width: 400px;
|
|
margin: 1rem;
|
|
padding: 2rem;
|
|
box-shadow: 0 0 40px rgba(0,0,0,0.2);
|
|
border-radius: var(--border-radius);
|
|
background: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
.container,
|
|
.form__input,
|
|
.form__button {
|
|
|
|
font: 500 1rem 'Quicksand', sans-serif;
|
|
} |