@charset "UTF-8";

*{
    font-family: "Titillium Web", sans-serif;
    box-sizing: border-box;
}

body.login {
    background-color: #000000;
    background-position: center center;
    background-image: url('icons/backgroundbig.jpg');
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

p {
    margin: 15px;
    text-align: center;
}

h1 {
    color: rgba(73,89,102,255);
    background-color: #ffffff;
    display: flex;
    align-self: center;
    text-align: center;
}

main.login, section.login, article.login {
    align-self: center;
    width: 25%;
    height: 50%;
    margin: 1px;
    border: rgba(73,89,102,255) solid;
    padding: 15px;
    border-radius: 10px;
    background-color: #ffffff;
    
}

header.login {
    margin: 1px;
    padding: 15px;
    background-color: #ffffff;
    width: fit-content;
    display: flex;
}

form label {
    color: rgba(73,89,102,255);
    font-weight: bold;
    display: block;
    width: fit-content;
    font-size: 1em;
    font-weight: 100;
    padding: 3px 7px;
    margin-top: 10px;
    margin-bottom: 0px;
    border-radius: 5px;
}

#form-token{
    display: none;
}

input[type=text], [type=number], select, input[type=date], input[type=date], input[type=datetime], input[type=email], input[type=month], input[type=password], input[type=range], input[type=tel], input[type=time], input[type=week]{
    width: 100%;
    height: 100%;
    font-size: 1em;
    padding: 10px 20px;
    margin: 5px 15% 10px 0%;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    appearance: textfield;
}

.confirmar {
    background-color: #196aff;
    color: white;
    width: 100%;
    font-size: 1em;
    color: white;
    padding: 10px 20px;
    margin: 0% 0% 0% 0%;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cancelar{
    background-color: #ff2a2a;
    color: white;
    width: 100%;
    font-size: 1em;
    color: white;
    padding: 10px 20px;
    margin: 0% 0% 0% 0%;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cancelar:hover{
    background-color: #b10000;
    color: white;
    width: 100%;
    font-size: 1em;
    color: white;
    padding: 10px 20px;
    margin: 0% 0% 0% 0%;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.confirmar:hover, .confirmar-direita:hover, .confirmar-centro:hover {
    background-color: #003aa7;
}

.confirmar:disabled, .confirmar-direita:disabled, .confirmar-centro:disabled{
    cursor: default;
}

.confirmar-direita{
    background-color: #196aff;
    color: white;
    width: 50%;
    font-size: 1em;
    color: white;
    padding: 10px 20px;
    margin: 0% 0% 0% auto;
    margin-left: auto;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.confirmar-centro{
    background-color: #196aff;
    color: white;
    width: 90%;
    font-size: 1em;
    color: white;
    padding: 10px 20px;
    margin: 0% auto;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:disabled {
    background-color: #acacac;
    color: white;
    margin: 2px; 
    cursor: default;
}

.wrapper{
    position: relative;
    display: inline-block;
    width: 100%;
}

.upperTip{
    position: absolute;
    top: 40%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 16px;
    color: gray;
    cursor: default;
}

 /* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
background-color: #ff5e5e;
margin: 15% auto; /* 15% from the top and centered */
padding: 20px;
border: 1px solid #888;
width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
color: #ffffff;
float: right;
font-size: 28px;
font-weight: bold;
}

.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
} 

.display-grid{
display: grid;
padding: 5px;
background-color: rgba(247,247,247,255);
grid-template-columns: 255px 255px;
text-align: center;
row-gap: 10px;
column-gap: 2px;
border-radius: 10px;
border: solid black;
}

.popup-title{
text-align: center;
grid-column: 1 / 3;
background-color: rgba(247,247,247,255);
color: rgba(73,89,102,255);
margin: 0px 0px 10px 0px;
padding: 5px;
display: flow-root;
cursor: default;
margin: 0px;
border-radius: 10px;
}

.strong{
    font-weight: bold;
}

.ocuppy-2-columns{
    grid-column: 1 / 3;
}