* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: black;
}

nav {
    background-color: #374151;
}

ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    width: 50%;
    margin: auto;
}

li {
    list-style-type: none;
    color: #ddd;
}

button {
    border-radius: 0.5rem;
    padding: 0.5rem 1.25rem;
    border: none;
    color: white;
    background-color: #1d4ed8;
    cursor: pointer;
    border: 0 solid #e5e7eb;
    width: 100%;
}

button:hover {
    background-color: #1e40af;
}

input {
    appearance: none;
    border-radius: 0.25rem;
    color: rgb(55 65 81);
    border-width: 1px;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    padding: 0.5rem 0.75rem;
}

input:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;

}

form {

    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

table {
    border-collapse: collapse;
    width: 100%;
}

table td, table th {
    border: 1px solid #ddd;
    padding: 8px;
}

table tr:nth-child(even){
    background-color: #f2f2f2;
}

table tr:hover {
    background-color: #ddd;
}

th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #04AA6D;
    color: white;
  }

.content {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.links li {
    padding: 0 0.5rem;
}

.links li a {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.links li a:hover {
    color: rgba(255,110,0,1) !important;

}

.active {
    color: rgba(255,110,0,1) !important;
}

.heading_500 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 36px;
}

.code_500 {
    text-align: center;
    margin-bottom: 5rem;
    font-size: 48px;
    color: #800000;
}

.text_500 {
    text-align: center;
    font-size: 18px;
}

.index_form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.form_content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
}

.badge {
    color: #fff;
}

.badge:after{
    content:attr(value);
    font-size:12px;
    color: #fff;
    background: red;
    border-radius:50%;
    padding: 0 5px;
    position:relative;
    left:-8px;
    top:-10px;
    opacity:0.9;
}

.error {
    background-color: #fee2e2;
    border-width: 1px;
    border-color: #f87171;
    color: #b91c1c;
    padding: 1rem 0.75rem;
}

.login_button {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

