| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- :root {
- --primary: #6E4B3A;
- --secondary: #3A5A85;
- --accent: #D4AF37;
- --background: #F9F6F0;
- --surface: #DCD6CF;
- --textMain: #2A2A2A;
- --textMuted: #6D6D6D;
- --error: #B7410E;
- --success: #708238;
- }
- *{
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body{
- height: 100vh;
- width: 100vw;
- background: var(--background);
- color: var(--textMain);
- }
- .logo{
- position: absolute;
- top: 35px;
- left: 35px;
- }
- .page{
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- height: 100%;
- width: 100%;
- }
- .standardForm{
- display: flex;
- flex-direction: column;
- width: 100%;
- max-width: 550px;
- background: var(--surface);
- padding: 35px;
- }
- .standardForm h1{
- text-align: center;
- }
- .standardForm label{
- display: flex;
- flex-direction: column;
- font-size: 22px;
- margin: 15px 0;
- }
- .standardForm input{
- font-size: 22px;
- padding: 5px 0 5px 10px;
- }
- .standardForm button, .button{
- font-size: 22px;
- margin: 15px 0;
- background: var(--primary);
- border: none;
- color: var(--accent);
- padding: 10px;
- font-weight: bold;
- cursor: pointer;
- }
- .link, .standardForm .link{
- background: none;
- border: none;
- font-size: 18px;
- color: var(--textMuted);
- cursor: pointer;
- text-decoration: underline;
- margin: 0;
- }
|