html, body {
    display: flex;
    justify-content: center;
    font-family: Roboto, Arial, sans-serif;
    font-size: 15px;
    min-height: 400px;
    margin-bottom: 100px;
    clear: both;
}

input[type=text], input[type=password] {
    width: 100%;
    padding: 16px 8px;
    margin: 8px 0 30px;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 5px;
}

textarea {
    width: 100%;
    height: 206px;
    padding: 16px 8px;
    margin: 8px 0 30px;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 5px;
}

textarea.small {
    width: 100%;
    height: 80px;
    padding: 16px 8px;
    margin: 8px 0 30px;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 5px;
}

.half {
    width: 100%;
    height: 80px;
}

.icon {
    font-size: 110px;
    display: flex;
    justify-content: center;
    color: #4286f4;
}

button {
    background-color: #4286f4;
    color: white;
    padding: 14px 0;
    margin: 10px 4px;
    border: none;
    cursor: pointer;
    width: 20%;
}

.button {
    background-color: #4286f4;
    color: white;
    padding: 14px 0;
    margin: 10px 4px;
    border: none;
    cursor: pointer;
    padding: 13px 20px;
    text-decoration: none;
    font-weight: bold;
}

.button:hover {
    text-decoration: none;
}

h1 {
    text-align: center;
    fone-size: 18;
}

button:hover {
    opacity: 0.8;
}

.button:hover {
    opacity: 0.8;
}

.formcontainer {
    background-color: #fff;
    border-radius: 0.8rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.16);
    text-align: center;
    margin: 10% 50px 12px;
    min-width: 1000px;
}

form.higher {
    height: 110%
}

.container {
    padding: 16px 0;
    text-align: left;
}

span.psw {
    float: right;
    padding-top: 0;
    padding-right: 15px;
}

label {
    margin-top: 10px;
}

label[for="upload"] {
    background-color: #4286f4;
    color: white;
    padding: 14px 0;
    margin: 10px 4px;
    border: none;
    cursor: pointer;
    width: 20%;
}

label.strong-label {
    font-weight: bold;
    margin-top: 10px;
}

div.row.buttons{
    box-shadow: 0px -4px 3px rgba(0,0,0,.16);
    position: fixed;
    left: 0;
    bottom: 0;
    width: 101%;
    text-align: center;
    background-color: white;
    z-index: 2;
}

div.buttons {
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
}

.tox-notifications-container{
    display:none !important;
}

.loader {
    border: 7px solid #f3f3f3;
    border-top: 7px solid #3498db;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    animation: spin 2s linear infinite;
    margin: auto;
}

textarea.error {
    border: 2px solid #ff0000 !important;
}

input.error {
    border: 2px solid #ff0000 !important;
}

span.error {
    position: relative;
    color: #ff0430;
    margin-top: 10px;
    float: right;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Change styles for span on extra small screens */
@media screen and (max-width: 300px) {
    span.psw {
        display: block;
        float: none;
    }
}