﻿html, body {
    height: 100%;
    width: 100%;
}


.mainContainer {
    height: 100%;
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: #0D1F2E;
}

.mainLogin {
    display: grid;
    width: 40%;
    height: auto;
    padding: 20px;
    background-color: lightgray;
    z-index: 2;
    border-radius: 15px;
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.imgLogo {
    width: 100%;
    text-align: center;
}

.btnLogin {
    height: 40px;
    width: 100px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    background: #0D1F2E;
    color: white;
    border-color: none;
    font-weight: bold;
}

    .btnLogin:hover {
        color: #0D1F2E;
        background-color: transparent;
        border-color: #0D1F2E;
    }

