body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f9fb;
    color: #222
}

.header-title {
    background: #2b6cb0;
    color: white;
    padding: .01vw;
    text-align: center;
}

.container {
    max-width: 100%;
    /* margin: 2rem auto; */
    padding: 1rem;
    background: rgb(247, 225, 225);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05)
}

.footer {
    position:absolute;
    color: #100f0f;
    font-size: 1rem;
    text-align: center;
    background-color: #81e4ff;
    width: 100%;
    left:0px;
    /* margin-top: 1.5rem */
}

a {
    color: #2b6cb0;
    text-decoration: none;
    color: rgb(97, 5, 5);
    font-size: 2vw;
    padding: 0.5vw;
}

.active {
    font-weight: bold;
    text-decoration: underline;
}

a:hover {
    text-decoration: underline;
    color: rgb(133, 10, 122);
}

#header-title {
    color: white;
    text-decoration: none;
    font-size: 3vw;
}

#header-title:hover {
    color: white;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    border: 1px solid #ddd;
}

th,
td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background: #f4f4f4;
}

/* form label {
    display: flex;
    padding: 3px;
    width: 40%;
    margin-left: 1rem;
    font-size: 1rem;
} */

.error {
    display: flex;
    padding: 0px;
    width: 40%;
    margin-left: 1rem;
    font-size: 1rem;
    color: red;
}

form input,
form select,
form textarea {
    display: flex;
    padding-left: 40px;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    width: 60%;
    margin-left: 1rem;
}

button {
    background: #2b6cb0;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
    margin-left: 1rem;
    width: 29.9%;
}

button:hover {
    background: #1d4e89;
}

button[type="reset"] {
    background: #5e1717;
}

.action {
    margin-right: 10px;
    color: rgb(97, 5, 5);
    font-size: 1.5vw;
}

.action:hover {
    color: rgb(133, 10, 122);
    text-decoration: none;
    text-shadow: 0 0 5px rgba(133, 10, 12, 0.5);
    background-color: rgba(203, 172, 172, 0.3);
}

.show-password {
    position: absolute;
    display: inline;
    margin-left: 1%;
    margin-bottom: -2%;
    transform: translateY(-50%);
}

.forgot-password{
    position: absolute;
    width: 60%;
    margin-left: 1rem;
    text-align: right;
    transform: translateY(-50%);
}

.forgot-password>a{
    position:relative;
    padding:0px;
    font-size: 12px;
}
/* Responsive: make form controls full-width on small screens */
@media (max-width: 800px) {

    /* include padding in width calculations */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    /* form label {
        display: block;
        width: 100%;
        margin-left: 0;
        padding: .5rem 0;
        font-size: 1rem;
    } */

    .error {
        display: block;
        width: 100%;
        margin-left: 0;
        padding: 0.25rem 0;
    }

    form input,
    form select,
    form textarea,
    .show-password,
    button {
        padding-left: 40px;
        width: 100%;
        margin-left: 0;
        display: block;
    }

    form input,
    form select,
    form textarea {
        padding: 0.75rem;
        font-size: 1rem;
    }

    .show-password {
        margin-bottom: 0.75rem;
    }

    button {
        padding: 0.75rem;
        font-size: 1rem;
        width: 100%;
    }

    button[type="reset"] {
        margin-top: 0.5rem;

    }

    .show-password {
        margin-left: 1rem;
        margin-bottom: 1rem;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        margin-top: .5rem;
        border: 1px solid #ddd;
        font-size: 3vw;
    }

    th,
    td {
        padding: 0.25rem;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    th {
        background: #f4f4f4;
    }
    .show-password {
        margin-left: -5% !important;
    }
}

@media(max-width:600px) {
    .show-password {
        margin-left: -8% !important;
    }
}

@media(max-width:500px) {
    .show-password {
        margin-left: -10% !important;
    }
}

@media(max-width:200px) {
    .show-password {
        margin-left: -30% !important;
    }
}


