* {
    color: #E6EAF0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

body {
    font-family: 'Eurostile', sans-serif;
    background-color: rgb(0, 0, 0);
    margin: 0;
}

/*Main*/
form {
    margin: 0px;
}

.form_group {
    padding: 10px;
}

button {
    background: none;
    border: none;
    text-shadow: none;
    font-size: 20px;
}

.main_input {
    padding: 10px;
    margin: 5px;
    font-size: 15px;
    border-radius: 20px;
    border: none;
    background-color: #1b1b1bb0;
    text-shadow: none;
}

.main_submit {
    padding: 10px;
    margin: 5px;
    font-size: 15px;
    border-radius: 20px;
    border: none;
    background-color: #1b1b1bb0;
    text-shadow: none;
}

.main_submit:hover {
    background-color: #1b1b1b83;
}

h1 {
    margin-left: 50px;
    font-size: 40px;
}

.error_text {
    margin: 5px;
}

.add {
    flex-direction: column;
    border: 5px dashed #555555be;
    background-color: #5555553d;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    margin: 50px;
}
/**/

/*Header*/
header {
    height: 60px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    margin: 5px;
    background-color: #555555be;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    min-width: 0;
}

.header-right {
    margin-left: auto;
}

.button_header {
    padding: 15px;
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    min-width: 0;
}

.button_header_logout {
    padding: 10px;
    text-decoration: none;
    width: 30px;
}

.button_header_logout:hover {
    transform: scale(0.95);
}

.button_header_logout img {
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 700px) {
    .header-left a:first-child {
        display: none;
    }

    .button_header {
        padding: 10px;
    }
}
/**/

/*Login*/
.login_container {
    display: flex;
    justify-content: center;
    text-align: center;
}

.login_input {
    padding: 15px;
    margin: 5px;
    font-size: 20px;
    border-radius: 25px;
    border: none;
    background-color: #1b1b1bb0;
    text-shadow: none;
}

.login_submit {
    padding: 15px;
    margin: 5px;
    font-size: 20px;
    border-radius: 25px;
    border: none;
    background-color: #1b1b1bb0;
    text-shadow: none;
}

.login_submit:hover {
    background-color: #1b1b1b83;
}
/**/