.center {
    color: white;
    display: grid;
    justify-content: center;
    align-items: center;
    background-color: #2679b0;
    border-radius: 10px 10px 0 0;
}

body {font-family: Arial, Helvetica, sans-serif;}

input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 5px;
    background-color:  white;
}

label{
    color: #2679b0;
    margin-left: 5px;
}

button {
    background-color: #2679b0;
    font-size: 20px;
    color: white;
    padding: 14px 20px;
    margin: 0 0 1em 0;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;    
}

button:hover {
    background-color: green;
}

.imgcontainer {
    margin-bottom: 10px;
    padding-top: 10px;
    position: relative;
    border-bottom: solid #2679b0 1px;
    background-color: white;
}

.errore{
    color: red;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    font-size: medium;
}

div.logo {
    display: inline-block;
    text-align: center;
    width: 70%;
    color: #2679b0;
}

img.logo {
    width: 20%;
}

.container {
    padding: 16px;
}

span.psw {
    float: right;
    padding-top: 16px;
}

.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    padding-top: 60px;
}

.modal-content {
    background-color: lightblue ;
    margin: 0px auto 15% auto;
    border: 1px solid #888;
    width: 30%; 
    min-width: 410px;
    border-radius: 10px 10px 10px 10px;
}

.animate {
    animation: animatezoom 0.6s
}

@keyframes animatezoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}

@media screen and (max-width: 410px) {
    span.psw {
        display: block;
        float: none;
    }
    .cancelbtn {
        width: 100%;
    }
}
