.login-container {
    width: 70%;
    margin-top: 5%;
    margin-bottom: 5%;
}

.login-form {
    padding: 5%;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
}

.login-form h3 {
    text-align: center;
    color: #333;
}

.login-container form {
    padding: 10%;
}

.btnSubmit {
    width: 50%;
    border-radius: 1rem;
    padding: 1.5%;
    border: none;
    cursor: pointer;
    background-color: lightgray;
    color: white;
}

/* Forgot password screen */

.forgot-container {
    width: 70%;
    margin-top: 5%;
    margin-bottom: 5%;
}

.forgot-form {
    padding: 5%;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
}

.forgot-container form {
    padding: 10%;
}

/* Reset password screen */

.reset-container {
    width: 70%;
    margin-top: 5%;
    margin-bottom: 5%;
}

.reset-form {
    padding: 5%;
    box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);
}

.reset-container form {
    padding: 10%;
}

/* Edit user screen */
.edituser-container {
    width: 80%;
    margin-top: 5%;
    margin-bottom: 5%;
}

/* Table with fixed column */
.table-container {
    height: 10em;
}
.table-container table {
    display: flex;
    flex-flow: column;
    height: 100%;
    width: 100%;
}
.table-container table thead {
    /* head takes the height it requires,
    and it's not scaled when table is resized */
    flex: 0 0 auto;
    width: calc(100% - 0.9em);
}
.table-container table tbody {
    /* body takes all the remaining available space */
    flex: 1 1 auto;
    display: block;
    overflow-y: scroll;
}
.table-container table tbody tr {
    width: 100%;
}
.table-container table thead, .table-container table tbody tr {
    display: table;
    table-layout: fixed;
}
