.body {
    font-family: Helvetica, Arial, sans-serif; 
    font-weight: 300;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

.loginScreen {
    height: calc(100vh - 4.5rem);
    width: calc(100vw - 0.1rem);
    display: flex;
    flex-flow: column;
    justify-content: center;
    position: relative;
}

.loginForm {
    height: 100%;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    position: relative;
    justify-content: center;
    align-items: center;
}

.login-page-header {
    width: 100%;
    height: 44px;
    display: flex;
    flex-flow: row nowrap;
    position: relative;
    justify-content: center;
    align-items: center;
    color: white;
    background: rgb(127,47,79);
    background: -moz-linear-gradient(90deg, rgba(127,47,79,1) 0%, rgba(79,47,127,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(127,47,79,1) 0%, rgba(79,47,127,1) 100%);
    background: linear-gradient(90deg, rgba(127,47,79,1) 0%, rgba(79,47,127,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#7f2f4f",endColorstr="#4f2f7f",GradientType=1);
}

.clinic {
    width: 20rem;
}

/* 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 */

.container {
    max-width: 1140px;
    /* align-items: center; */
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.formContainer {
    margin-top: auto!important;
    margin-left: 25%;
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
/*  */
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 {
    height: 1.8rem;
    max-width: 20rem;
    margin: 5px;
    border: 1px solid rgb(128,0,120);;
    border-radius: 5px;
    width: calc(100% - 20px);
    min-width: 10rem;
    /*background-color: white !important; */
    padding: 4px;
    font-size: 1rem !important;
}
/* End of styling of the input fields */


/* Styling of the buttons in the page */
button, input[type="submit"], input[type="reset"] {
    /* background: none; */
    background: rgb(255,0,63);
    background: -moz-linear-gradient(90deg, rgba(255,0,63,1) 0%, rgba(63,0,255,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255,0,63,1) 0%, rgba(63,0,255,1) 100%);
    background: linear-gradient(90deg, rgba(255,0,63,1) 0%, rgba(63,0,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff003f",endColorstr="#3f00ff",GradientType=1);
    color: rgb(255, 255, 255);
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

.entryField {
    height: 1.8rem;
    max-width: 20rem;
    margin: 5px;
    border: 1px solid rgb(128,0,120);;
    border-radius: 5px;
    width: calc(100% - 20px);
    min-width: 10rem;
    /*background-color: white !important; */
    padding: 4px;
    font-size: 1rem !important;
}

.button {
    cursor: pointer;
    width: fit-content;
    border-radius: 15px;
    border: 0px
}

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: red;
/*    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: 1px;
    right: 105px;
    font-weight: bold;
    animation: color-change 1s infinite;
}

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