﻿body {
    background-color: #8B0000;
    font-family: Arial, sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.background-image {
    background-image: url('/imgs/login.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    width: 20%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
}

.login-container {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 50%;
    text-align: center;
    margin-left: 20%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: bold;
    color: #8B0000;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px;
    color: #8B0000;
    width: 100%;
    margin-bottom: 10px;
}

.btn-login {
    background-color: #8B0000;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

    .btn-login:hover {
        background-color: #5A0000;
        color: #fff;
    }

.title {
    font-size: 24px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
}

ul li {
    color: darkred;
}

.forgot-password {
    color: #8B0000;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-top: 10px;
}

.forgot-password:hover {
    color: #5A0000;
}
