body {
    margin: 0;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}
footer {
    padding: 4rem;
    box-sizing: border-box;
    background-color: #912b6f;
    color: white;
    font-size: 0.8rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
}
a.button,
input[type="submit"],
button {
    font-family: inherit;
    cursor: pointer;
    padding: 0.5rem 2rem;
    box-sizing: border-box;
    font-size: 1rem;
    color: white;
    background-color: #912b6f;
    border: 2px solid #912b6f;
    border-radius: 0.25rem;
    transition: 0.2s linear all;
}
a.button:hover,
input[type="submit"]:hover,
button:hover {
    filter: brightness(1.25);
}
select,
input {
    padding: 0.5rem 1rem;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 0.8rem;
    min-width: 14rem;
    border: 2px solid #912b6f;
    border-radius: 0.25rem;
    text-align: center;
    transition: 0.2s linear all;
}
select {
    cursor: pointer;
}
input[type="checkbox"] {
    min-width: 0;
}
form input:hover {
    filter: brightness(1.25);
}
a {
    color: #912b6f;
    text-decoration: none;
}
a.underline {
    text-decoration: underline;
}
a:hover {
    filter: brightness(1.25);
}
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
code {
    margin: 1rem 0;
    padding: 0.25rem 1rem;
    box-sizing: border-box;
    background: #333333;
    color: white;
    border-radius: 0.25rem;
    font-size: 0.8rem;
}
table {
    border-collapse: collapse;
}
table thead tr {
    background-color: #b5bdc4;
}
table thead tr th {
    font-weight: 300;
}
table tbody tr:hover {
    background-color: #fafafc;
}
table th,
table td {
    padding: 0.25rem 1rem;
    box-sizing: border-box;
    text-align: center;
}
table select {
    padding: 0.25rem;
    font-size: 0.8rem;
    line-height: 0.8rem;
}
.logo {
    position: relative;
    width: 6rem;
    height: 5rem;
    text-decoration: none;
    background-image: url(https://s3.eu-west-1.amazonaws.com/media.valmesa.com/data/cumbre-vieja/img/logo.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.container.vertical {
    flex-direction: column;
}

/* auth css */
label {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    color: #666666;
}