﻿body {
    background-color: #D4DBE2;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.login-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    overflow: hidden;
    width: 900px;
    max-width: 100%;
}

.form-section {
    padding: 2rem;
    flex: 1;
    margin-top: 46px;
    padding-left: 55px;
    padding-right: 55px;
}

.image-section {
    background-color: #006b3e;
    color: white;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .image-section img {
        max-width: 100%;
        height: auto;
    }

.btn-login {
    background-color: #28a745;
    color: white;
    font-weight: bold;
    border: none;
}

    .btn-login:hover {
        background-color: #218838;
        color: white;
    }

.form-control {
    border-radius: 5px;
}

.footer {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6c757d;
}

input[type="text"] {
    height: 52px;
}

input[type="password"] {
    height: 52px;
}

button {
    height: 52px;
}

.btn-outline-secondary {
    border: 1px solid #ced4da;
    border-left: 0;
}
