﻿body, html {
    height: 100%;
    margin: 0;
}

.bg {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    display: flex;
    flex-direction: row;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0;
    border-radius: 15px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    overflow: hidden;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

.login-image {
    width: 100%;
    height: auto;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    object-fit: cover;
}

.login-form {
    padding: 2rem;
    flex: 1;
}

.form-floating {
    margin-bottom: 1rem;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }
