body {
    font-family: Arial, sans-serif;
    background-image: linear-gradient(rgb(187, 208, 235) 25%, #243c57);
}

.login-form input::placeholder {
    color: rgba(128, 128, 128, 0.35);
    font-style: italic;
}

input:focus::placeholder {
    color: transparent;
}

.login-form input {
    width: 400px;
    height: 50px;
    border-radius: 25px;
    font-size: 1.4em;
    padding: 0px 20px 0px 20px;
    text-align: center;
    border-color: rgba(0, 0, 0, 0.55);
    border-style: solid;
    border-width: 2px;
}

.login-form input[type=submit] {
    width: 200px;
    height: 40px;
    font-size: 1.2em;
    background-color: rgb(86, 192, 54);
    margin-top: 5px;
}

.login-form input[type=submit]:hover {
    color: rgba(0, 0, 0, 0.8);
    border-color: rgba(0, 0, 0, 0.45);
    background-color: rgb(137, 230, 109);
}

label {
    width: 400px;
    display: block;
    text-align: center;
    margin-bottom: -15px;
    font-size: 1.2em;
}

.header-logo {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 50px;
}

.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}



/* User List Styling */

#users {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    text-align: center;
}
  
#users td, #users th {
    border: 1px solid #ddd;
    padding: 8px;
    min-width: 100px;
    font-size: 0.8em;
}
  
#users tr:nth-child(even){background-color: #ebebeb;}
#users tr:nth-child(odd){background-color: #cecece;}
  
#users tr:hover {background-color: #63778f;}
  
#users th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    background-color: #243c57;
    color: white;
}

td.checkbox {
    width: 100px;
}


td.submit input {
    visibility: hidden;
    width: 100px;
 
}

td.submit input.edited {
    visibility: visible;
    width: 100px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #9cd368;
    border: #4e6934 solid 1px;
}

td.submit input.edited:hover {
    background-color: #9bc8fc;
    border: #2e4c6e solid 1px;
}

#users a {
    color: white;
    text-decoration: none;
}