body {
    font-family: Arial, Helvetica, sans-serif; background: white;
}

/* Full-width input fields */
input[type=text], input[type=password] {
    width: 100%;
    padding: 0.75em 1.25em;
    margin: 0.5em 0 2em;
    display: block;
    border: 1px solid #ccc;
    border-radius: 1em;
    box-sizing: border-box;
}

/* Set a style for all buttons */
button {
    background-color: #369;
    color: white;
    padding: 0.75em 1.25em;
    margin: 0.5em auto;
    display: block;
    border: none;
    border-radius: 1em;
    cursor: pointer;
    width: 15em;
}

button:hover {
    opacity: 0.8;
}

a{color:#154360;text-decoration:none;}
a:focus, a:hover{color:#2980b9;text-decoration: none ;}


/* Logo */
img.logo {
    display: block;
    width: auto;
    height: auto;
    margin: 0 auto;
}

/* Center the image and position the close button */
.imgcontainer {
    text-align: center;
    margin: 1em 0 0 0;
    position: relative;
}

img.avatar {
    width: auto;
    height: auto;
}

.container {
    padding: 1em 1em;
}

/* 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: #fefefe;
    border: 1px solid #888;
    width: 40%;
    min-width: 25em;
    margin: 8em auto 1em auto;
    border-radius: 1.5em;
}
.modal-content-verification {
    background-color: #fefefe;
    border: 1px solid #888;
    width: 90%;
    max-width: 79.5em; /* Corrispondono a 1240px (larghezza dell'immagine che devo visualizzare) + 2em di padding */
    /* min-width: 25em; */
    margin: 8em auto 1em auto;
    border-radius: 1.5em;
}

/* Add Zoom Animation */
.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
    from {-webkit-transform: scale(0)}
    to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}
