﻿body {
    font-family: 'Arial', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.auth-container {
    display: flex;
    width: 100%;
    height: 100vh;
}

.auth-container-left {
    flex: 1;
    background-color: #758698;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.auth-container-left img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.auth-container-left h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.auth-container-left p {
    font-size: 18px;
    margin: 0;
}

.auth-container-right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.auth-container-footer {
    text-align: center;
    margin-top: 20px;
    color: #000;
    font-size: 14px;
    align-items: end;
}

.auth-container-footer a {
    color: #000;
    text-decoration: none;
}

.auth-container-footer a:hover {
    text-decoration: underline;
}

.forgot-password {
    text-align: right;
}

.forgot-password a {
    color: #000;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #000;
}
