html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0 !important;
    font-family: Arial;
    font-size: 12px;
    background-color: white;
}

.wrapper {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
}

.centered-wrapper {
    width: 470px;
    height: 470px;
    margin: auto;
    border: 2px solid #3f9dd7;
    border-radius: 5px;
}

.panel {
    text-align: center;
    margin: auto;
    width: 300px;
}

select option {
    color: black
}

.btn-login {
    width: 26px;
    margin-top: 5px;
    cursor: pointer;
    float: right;
}

.logo {
    margin: 25px auto 15px;
    text-align: center;
}

    .logo img {
        width: 200px;
    }

/** Buttons */
.buttons {
    text-align: right;
    padding-top: 15px;
}

input[type=button] {
    border-radius: 0.3em 0.3em 0.3em 0.3em;
    min-width: 100px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    outline: none;
}

.primaryButton {
    background-color: #3f9dd7;
    border: none;
    color: #fff;
    font-weight: bold;
    font-size: larger;
}

    .primaryButton:hover {
        background-color: #3390ca;
    }

    .primaryButton:disabled {
        opacity: 0.6;
    }
