body {
    background-image: url("../RESOURCES/BlueBackground.jpg");
}

/* Generic styling of the section containing the login form */
section.containerLogin {
    width: 25%;
    background-color: none;
    margin: auto;
    margin-top: 15%;
}
/* End of generic styling of the section containing the login form */


/* Generic styling of the input form */
form {
    border: 1px solid #f1f1f1;
/*    font-family: "Helvetica Neue"; */
}
/* End of generic styling of the input form */


/*  */
label {
    color: #f1f1f1;
/*    font-family: "Helvetica Neue"; */
    font-size: 21px;
    font-weight: 200;
}
/*  */


/* Styling of the input fields */
input[type=text], input[type=password], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 21px;
    font-family: inherit;
    font-weight: inherit;
}
/* End of styling of the input fields */


/* Styling of the buttons in the page */
button {
    background-color: #4CAF50;
    color: white;
    /* padding: 14px 20px; */
    padding: 10px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
/*    font-family: "Helvetica Neue"; */
    font-size: 21px;
    font-weight: 200;
}
button:hover {
    opacity: 0.8;
}
/* End of styling of the buttons in the page */


/* Styling of the cancel button */
.cancelbtn {
    width: auto;
    padding: 10px 18px;
    background-color: #f44336;
/*    font-family: "Helvetica Neue"; */
    font-weight: 200;
}
/* End of styling of the cancel button */


/* Styling of the image */
.imgcontainer {
    text-align: center;
    margin: 24px 0 12px 0;
}
img.avatar {
    width: 30%;
    border-radius: 20%;
}
/* End of styling of the image */


/*  */
.containerDialogue {
    padding: 10px;
    color: white;
    font-weight: 300;
    display: flex;
    align-content: space-between;
    align-items: center;
}
/*  */


/*  */
#status {
    margin-left: 5px;
    color: black;
/*    font-family: "Helvetica Neue"; */
    font-size: 17px;
    font-weight: 200;
}
/*  */


/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
    span.psw {
       display: block;
       float: none;
    }
    .cancelbtn {
       width: 100%;
    }
}

.message {
    min-width: 200px;
    flex-shrink: 1;
    flex-grow: 1;
    text-align: center;
}

.top-right {
    position: absolute;
    top: 8px;
    right: 26px;
    font-weight: bold;
    animation: color-change 1s infinite;
}

@keyframes color-change {
    0% { color: red; }
    50% { color: blue; }
    100% { color: red; }
  }