* {
    font-size: 14px;
    font-family: "Open Sans", Verdana, Arial, sans-serif;
    box-sizing: border-box;
    scrollbar-width: thin;
    letter-spacing: 0.2px;
}

body {
    background-color: #00963A;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/home.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

    #loginPanel {
        background-color: white;
        width: calc(100% - 20px);
        display: flex;
        flex-direction: column;
        padding: 15px;
        border-radius: 4px;
        box-shadow: 0 0 5px #333;
    }

    #loginPanel span {
        margin-bottom: 5px;
        font-size: 14px;
    }

    #loginPanel input {
        margin-bottom: 25px;
        padding: 5px;
    }

    #loginPanel button {
        padding: 7px 10px;
        width: min-content;
        background-color: #00963A;
        border-radius: 4px;
        border: none;
        margin: auto;
        color: white;
    }