| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- @import "./css/register.css";
- :root{
- --primary: #d7263d;
- --accent: #f46036;
- --dark: #1a1a1a;
- --gray: #2e2e2e;
- --text: #f2f2f2;
- --success: #4caf50;
- --warning: #ffc107;
- }
- *{
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- color: var(--text);
- }
- .page{
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100vh;
- width: 100vw;
- background: var(--dark);
- }
- .logo{
- position: absolute;
- top: 5px;
- left: 5px;
- }
- #notifier{
- position: fixed;
- bottom: 15px;
- left: 15px;
- font-size: 22px;
- padding: 25px;
- width: calc(100% - 30px);
- text-align: center;
- z-index: 100;
- }
- #notifier.error{
- background: var(--warning);
- color: var(--gray);
- }
- #notifier.success{
- background: var(--success);
- }
- .standardForm{
- display: flex;
- flex-direction: column;
- background: var(--gray);
- padding: 35px;
- width: 100%;
- max-width: 550px;
- }
- .standardForm h1{
- font-size: 35px;
- text-align: center;
- }
- .standardForm label{
- display: flex;
- flex-direction: column;
- font-size: 22px;
- margin: 10px 0;
- }
- .standardForm input{
- font-size: 22px;
- color: var(--gray);
- }
- .standardForm button{
- font-size: 26px;
- background: var(--accent);
- margin-top: 35px;
- padding: 10px 0;
- cursor: pointer;
- }
- .link{
- background: none;
- border: none;
- font-size: 22px;
- cursor: pointer;
- text-decoration: underline;
- }
|