@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400&display=swap');
* {
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #25414A;
    margin: 0;
    color: white;
}

header {
    background-color: hsl(195, 23%, 12%);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    height: 30px;
    margin-right: 1rem;
}

main {
    margin: 2rem auto;
    padding: 0 1rem;
    max-width: 1200px;
    overflow-x: hidden;
}

h1 {
    font-weight: 100;
    font-size: 1.8rem;
    margin-right: 2rem;
}

h2 {
    font-weight: 400;
    font-size: .9rem;
}

.input {
    border: none;
    height: 2rem;
    display: block;
    margin-bottom: 1rem;
    padding-left: .9rem;
    width: 100%;
}

.input-sm {
    width: 300px;
}

.input-xs {
    width: inherit;
}

.file {
    display: block;
    margin: 1rem 0;
}

.pdf {
    display: block;
    margin: 1rem 0;
    color: white;
}

.thumbnail {
    display: block;
    max-height: 200px;
    margin: 1rem 0;
}

button {
    background-color: #31c48d;
    padding: .5rem 1rem;
    border: none;
    cursor: pointer;
    color: white;
}

nav a {
    text-decoration: none;
    color: white;
    padding: .5rem;
    font-size: .9rem;
    font-weight: 100;
    line-height: 2;
}

nav a.active,
nav a:hover {
    font-weight: 400;
    color: #31c48d;
}

ul {
    list-style: none;
    padding-left: 0;
    font-weight: 100;
}

.errors {
    border: 1px solid;
    padding: 1rem;
    background-color: rgba(255, 255, 255, .3);
}

.row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.col {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.delete {
    margin-left: auto;
}

.row button {
    background-color: inherit;
}

.row:hover {
    background-color: rgba(49, 196, 141, .3);
}

.row:last-of-type {
    border-bottom: none;
}

.row a {
    color: white;
    font-size: .9rem;
    text-decoration: none;
}

.row a:hover {
    text-decoration: underline;
}

.date {
    font-family: monospace;
    font-size: .9rem;
    white-space: nowrap;
    margin-right: 1rem;
}

.color {
    display: block;
    margin-bottom: 1rem;
}

.dot {
    height: 15px;
    width: 15px;
    margin-right: 1rem;
    border-radius: 50%;
}

.order {
    border: none;
    background: none;
    margin-right: 1rem;
    color: white;
    font-family: monospace;
    font-size: .9rem;
    padding-right: .3rem;
    cursor: pointer;
}

label {
    font-weight: 100;
    font-size: .9rem;
    cursor: pointer;
    margin-right: 1rem;
}

.forgot {
    display: block;
    margin-top: 1rem;
    color: white;
    font-size: .9rem;
}

.title {
    display: flex;
    align-items: center;
}