﻿body {
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 0 15px;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f0f0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 1100px;
    border-radius: 8px;
}

.left-section,
.right-section {
    width: 45%;
    padding: 20px;
    background-color: #f0f0f0;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
}

    .left-section h5 {
        font-weight: bold;
        margin-bottom: 15px;
        color: #333;
    }

    .left-section ul {
        list-style-type: none;
        padding-left: 0;
        color: #555;
        font-size: 12px;
        text-align: justify;
    }

        .left-section ul li:first-child {
            text-decoration: underline;
        }

        .left-section ul li {
            margin-bottom: 10px;
            line-height: 1.6;
        }

.right-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-signin {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

    .form-signin input,
    .form-signin button {
        margin-top: 15px;
        margin-bottom: 10px;
    }

.password-container {
    position: relative;
    width: 100%;
}

    .password-container input {
        width: 100%;
        padding-right: 80px;
    }

    .password-container .toggle-password {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        color: #007bff;
        font-size: 14px;
        user-select: none;
    }

        .password-container .toggle-password:hover {
            text-decoration: underline;
        }

.footerBox {
    text-align: center;
    font-weight: bold;
    padding: 10px 0;
    margin-bottom: 20px;
}

    .footerBox img {
        height: 40px;
        padding: 0 10px;
    }

.logo-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

    .logo-header img {
        max-width: 350px;
    }

@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        padding: 20px;
    }

    .left-section,
    .right-section {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .form-signin {
        max-width: 100%;
    }
}

footer {
    background-color: #ffffff;
    text-align: center;
    padding: 20px;
    width: 100%;
    position: relative;
    bottom: 0;
    flex-shrink: 0;
}

.alert {
    text-align: center;
}

.error-label {
    font-weight: bold;
    color: red;
    padding-top: 15px;
    padding-bottom: 15px;
    text-transform: uppercase;
}
