@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400&display=swap');

html {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

*, *:before, *:after {
    box-sizing: inherit;
    font-family: 'Roboto', sans-serif;
}

.btn {
    display: block;
    background: #4f0f8b;
    color: #fff;
    font-size: 17px;
    border: 0;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    margin-top: 15px;
}

.icon {
    width: 28px;
}

.wrapper {
    width: 92%;
    margin: 0 auto;
}

.form {
    margin-top: 20px;
    margin-bottom: 20px;
}

table {
    width: 100%;
    margin: 20px 0;
}

table .header {
    font-weight: bold;
}

table td {
    padding: 4px 8px;
    font-size: 17px;
}

table .even td {
    background-color: #eee;
}

table .odd td {
    background-color: #ddd;
}

.small-text {
    font-style: italic;
    font-size: 14px;
}

.center {
    text-align: center;
}

#description {
    width: 100%;
    resize: vertical;
    height: 100px;
    min-height: 50px;
    max-height: 300px;
    padding: 15px;
    font-size: 17px;
}

fieldset {
    border: 1px solid #ccc;
}

/* Panel */
.panel {
    display: flex;
    justify-content: space-evenly;
}

.panel a {
    color: #000;
}

/* Login */
.login h2 {
    text-align: center;
}

.login-field {
    padding: 5px 0;
}

.login label {
    display: block;
    margin-bottom: 4px;
}

.login input {
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.login input[type=submit] {
    margin-top: 15px;
}
