﻿body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    width: 100%;
}

.left-side {
    flex: 3;
    background-image: url('../../images/lilly_background.jpg');
    background-size: cover;
    background-position: center;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}

.right-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background-color: #fff;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

.logo {
    width: 100%;
    max-width: 300px;
    margin-bottom: 30px;
}

.title {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.login100-form-btn {
    width: 100%;
    background-color: #d5231c;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .login100-form-btn:hover {
        background-color: #b31d16;
    }

footer {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 12px;
    text-align: center;
    color: #666;
}

    footer .links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap;
    }

    footer a {
        color: #666;
        text-decoration: underline;
        font-size: 12px;
    }

.footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.footer-logo img {
    width: 100px;
    height: auto;
}

.footer-text {
    flex: 1;
    text-align: center;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    footer .links {
        display: block;
        margin-top: 10px;
    }

    .left-side {
        height: 200px;
        border-top-right-radius: 40px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 40px;
    }

    .right-side {
        padding: 20px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .logo {
        max-width: 200px;
    }

    .title {
        font-size: 16px;
    }

    .login100-form-btn {
        padding: 12px;
        font-size: 14px;
    }

    footer {
        font-size: 10px;
    }

        footer .links {
            display: block;
            margin-top: 10px;
        }
}
