﻿@font-face {
    font-family: 'SuperMario';
    src: url('../fonts/mario.ttf');
}

html, body, form {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    height: 100%;
    margin: 0;
}

body {
    background-color: #32333D;
    color: #C2C2C5;
}

.loginContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.loginPanel {
    display: flex;
    background-color: #27272F;
    height: 200px;
    width: 80%;
    max-width: 200px;
    border-radius: 10px;
    padding: 20px;
}

.loginBox {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header {
    font-size: 26px;
    font-weight: bold;
    font-family: 'SuperMario';
    text-align: center;
}

.invalidLogin {
    font-size: 12px;
    color: red;
    text-align: center;
}

.title {
    font-size: 16px;
}

input[type=text], input[type=password] {
    height: 24px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.row.footerRow {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

button[type=submit] {
    border: none;
    padding: 6px;
    width: 70px;
    border-radius: 15px;
    background-color: #32333D;
    color: #C2C2C5;
    font-size: 14px;
}

button[type=submit]:hover {
    cursor: pointer;
    background-color: #34363F;
}

button[type=submit]:active {
    background-color: #41434F;
}