:root {
    --bg-clr: #000000;
    --raised-clr: #ffffff0f;
    --background: #000000;

    --shadow: 1px 1px 2px black;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    display: flow-root;

    background: linear-gradient(#181539, #000000 1000px);
    background-size: 1000px;
    
    min-height: 100vh;

    margin: 0;
    padding: 0;
}

.wrapper {
    margin: 0 auto;
    margin-top: 150px;
    width: 800px;
}

.divider {
    width: 100%;
    height: 16px;

    background-color: #93edff9e;
}

.logo {
    width:30%;
    height:30%;

    margin-left: 0px;
    padding: 10px;

    background: none;
    z-index: -5;
}

.logo-text {
    font-size: 14px;
    font-style: italic;
    color: white;
    position: relative;
    bottom: 14px;
}

.logo-img {
    margin-right: -10px;
}

.logo-link {
    text-decoration: none;
}

.main {
    background-color: var(--raised-clr);
    width: 100%;
    display: grid;
    grid-template-columns: 170px auto;
    padding-top: 7px;   
}

.left {
    display: block;
    
    margin: 0 10px 0 10px;
}

.right {
    color: white;
    display: block;
    background-color: #000000ac;

    padding: 6px;
    padding-left: 12px;
    border-radius: 10px 0 0 0;

    font-size: 16px;    
}

.left > div {
    background-color: var(--raised-clr);

    border-radius: 3px;
    color: white;
    text-shadow: var(--shadow);

    margin-bottom: 10px;
}

.right > h1 {
    border-bottom: double 3px rgba(255, 255, 255, 0.400);
    font-weight: 700;
    font-style: italic;
    font-size: 28px;

    margin: 10px 0 10px 0;
    text-align: left;
}

.right > h2 {
    border-bottom: solid 1px rgba(255, 255, 255, 0.300);
    font-size: 18px;

    margin-bottom: 10px;
    font-weight: 100;
    font-style: italic;
    padding-bottom: 2px;
    text-align: left;
}


.loginform {
    text-align: center; 
    font-style: italic;

    padding: 6px;
}

.loginform input {
    margin-top: 5px;
    
    width: 125px;
}

.loginform .error {
    color: #ff3ba08f;
    margin-top: 2px;
    margin-bottom: 2px;

    font-size: 12px;
}

.miniprofile {
    text-align: left; 

    font-size: 12px;
}

button, input, select {
    background-color: var(--raised-clr);
    color: white;
}

select {
    border: 2px inset gray;
}

select:focus {
    background-color: #2b2b2b;
    color: white;
}

.right button, .right input {
    margin-bottom: 10px;
}

.right a {
    color: lightpink;
}

a {
    color: white;
}

.navtab {
    padding-top: 10px;
    padding-bottom: 10px;
}

.navtab a {
    display: block;
    
    padding: 2px;
    padding-left: 8px;

    font-style: italic;
    font-weight: bold;
    text-decoration: none;
}

.navtab a:hover {
    background-color: #201c4e;
}

footer {
    text-align: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 2%;

    font-size: 12px;
}

.userinfo {
    border-bottom: dashed 1px gray;

    padding: 6px;
}

table {
    margin: 10px;
    margin-top: 15px;
}

tr, td, th {
    padding: 5px;

    background: linear-gradient(to bottom, #222, #111);
    color: #fff;
}

table, tr, td {
    border-collapse: collapse;

    border: 1px solid var(--raised-clr);
    border: 1px solid black;
}

.user-email {
    font-size: 14px;
    word-break: break-all;
}

.right > form {
    margin-top: 10px;
}

.right label {
    font-size: 14px;
}

.flag {
    width: 16px;
    height: 16px;
    vertical-align: text-top;
}