.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: space-around;
    align-items: center;

    background-color: var(--secondary);
    /* background-image: url('../img/image.jpg'); */
    /* background-position: center; */
    /* background-size: cover; */

    color: var(--secondary);
}

.container .box {
    width: 500px;
    /* min-height: 350px; */
    max-height: 100vh;
    overflow-y: auto;
    padding: 2.5%;

    background: var(--primary);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: var(--radius);
    box-shadow: 0 0 5px var(--secondary);
}

.container .box h2 {
    text-align: center;
    font-size: 2rem;
}

.container .box label p {
    font-size: 10pt;
    color: var(--third);
}

.container .box input {
    width: calc(100% - 4%);
    padding: 10px;
    border-width: 0 0 1px 0;
    border-color: var(--third);
    border-style: solid;
    background-color: rgba(255, 255, 255, 0);
    color: var(--secondary);
    outline: none;
}

.container .box input::placeholder {
    /* color: var(--third); */
}

.container .box input[type="submit"] {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 20px;
    background-color: var(--selected);
    color: var(--primary);
    transition: 0.5s;
    font-weight: bold;

    border-width: 1px;
    border-color: var(--selected);
    border-style: solid;
    border-radius: 10px;

}

.container .box input[type="submit"]:hover {
    background-color: rgba(255, 255, 255, 0);
    color: var(--selected);
    cursor: pointer;
    transition: 0.5s;
}

label>table td {
    padding-right: 10px;
    font-size: 10pt;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0 !important;
    width: 20px !important;
    height: 20px !important;
    border: 1px solid white;
    border-radius: 5px !important;
}


input[type="checkbox"]::before {
    content: "";
    display: block;
    margin: 0;
    width: 10px !important;
    height: 10px !important;
    transform: scale(0);
    background-color: var(--secondary);
    border-radius: 2.5px !important;
}



input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.form .error {
    text-align: center;
    color: var(--selected);
}

@media screen and (max-width: 900px) {
    .logo {
        height: 200px;
    }

    .logo img {
        height: 100%;
    }

    .container {
        flex-wrap: wrap-reverse;
        align-items: self-start;
    }

    .container .box {
        margin: 10px;
        width: 100%;
        height: calc(100% - 400px);
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

}

/* 
input[type="checkbox"]:focus {
    outline: max(2px, 0.15em) solid currentColor;
    outline-offset: max(2px, 0.15em);
}

input[type="checkbox"]:disabled {
    --form-control-color: var(--form-control-disabled);

    color: var(--form-control-disabled);
    cursor: not-allowed;
} */