body {
    font-family: Arial, sans-serif;
    background-color: #323232;
    color: #fff;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

a {
    color: #0a748f;
    text-decoration: none;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 22vh;
    background-image: url(/assets/images/background.png);
    background-size: cover;
    background-position: center;
    text-align: center;
    background-color: #092b3d;
    background-blend-mode: overlay;
    border-radius: 10px;
    margin-bottom: 20px;
}

.logo {
    max-width: 25%;
    height: auto;
    margin-top: 100px;
}

.content {
    display: flex;
    justify-content: space-between;
}

.sidebar {
    width: 20%;
    background-color: #202020;
    padding: 20px;
    border-radius: 10px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px;
    background: linear-gradient(90deg, #04202f, transparent);
    border-radius: 5px;
}

.sidebar ul li a.active,
.sidebar ul li a:hover {
    background-color: #043a57;
}

.stats {
    margin-top: 70px;
    background: linear-gradient(90deg, #04202f, transparent);
    padding: 10px 25px;
    border-radius: 10px;
}

.main {
    width: 45%;
    padding: 20px;
    background-color: #1c1c1c;
    border-radius: 10px;
}

.main h1 {
    color: #ffffff;
}

.register-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #043a57;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.login-form {
    width: 20%;
    background-color: #1c1c1c;
    padding: 20px;
    border-radius: 10px;
}

.login-form h2 {
    margin-top: 0;
}

label {
    display: block;
    margin-bottom: 5px;
}

input, select {
    width: 91.5%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    background: #323232;
    color: #fff;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #043a57;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.footer {
    text-align: center;
    margin-top: 40px;
    background: #1c1c1c;
    padding: 10px;
    border-radius: 10px;
}