/* Styles for the login page matching register page */
body {
    margin: 0;
    height: 100vh;
    font-weight: 100;
    background: radial-gradient(#000000, #1f1013);
    animation: fadeIn 1s ease-out;
    position: relative;
}

body {
    position: relative;
    overflow-y: auto;
}

.container-xl {
    position: relative;
    z-index: 2;
    padding-top: 20px;
    padding-bottom: 20px;
}

.card {
    background-color: #2e2e2e;
    color: white;
    border: 2px solid #eeba2c;
}

.form-control {
    background-color: #444444;
    color: white;
    border: 1px solid #ffffff;
}

.form-control::placeholder { color: #aaaaaa; }

.form-control:focus {
    background-color: #444444;
    color: white;
    border-color: #ffffff;
    box-shadow: none;
}

.card-header, .card-footer {
    background-color: #2e2e2e;
    border-bottom: 1px solid #00b7ff;
}

.card-header h3, .card-footer a { color: white; }

.btn-primary {
    background-color: #00b7ff;
    border-color: #00b7ff;
}

.btn-primary:hover {
    background-color: #0093cc;
    border-color: #0093cc;
}

.btn-primary:focus { box-shadow: 0 0 0 0.2rem rgba(0, 183, 255, 0.25); }
.small a { color: #00b7ff; }
.small a:hover { color: #0093cc; }

.login-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    z-index: 0;
}

.login-container {
    position: relative;
    z-index: 2;
}

.navbar {
    position: relative;
    z-index: 3;
}

.login-link:hover {
    color: #eeba2c !important;
}

footer {
    display: none;
}

.login-logo {
    width: 200px;
    height: 118px;
}
