* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins';
}
body {
        font-family: 'Poppins';
}
h2 {
        padding: 1rem 0;
        color: #333;
        font-weight: normal;
        font-size: 1.3rem;
}

ul {
        margin: 1rem 0;
        padding: 1rem 1rem 1rem 2rem;
        list-style: disc;
        border: 1px solid #fdfdfd;
        border-radius: 1rem;
}

ul.items {
        list-style: none;
        padding: 1rem 0;
        margin-left: 2rem;
}
p {
        padding: 0.3rem 0;
}

code {
        background: #f6faff;
        padding: 0 0.3em;
        outline: 1px solid #fdfdfd;
}
.wrap {
        max-width: 960px;
        margin: 0rem auto;
        display: flex;
        /* border-left: 1px solid #ccc;
        border-right: 1px solid #ccc; */
        padding: 2rem;
        align-items: center;
        justify-content: center;
        min-height: calc(100vh - 6rem);
        flex-direction: column;
}
.container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #eee;
        padding: 2rem;
        border-radius: 1rem;
}

.button {
        text-decoration: none;
        background: #fff;
        padding: 10px 15px;
        margin: 2rem 0;
        display: inline-flex;
        border: 1px solid #0064b9;
        color: #0064b9;
        border-radius: 5px;
        max-width: 200px;
        justify-content: center;
        cursor: pointer;
}
.button:hover {
        background: #0064b9;
        color: #fff;
        border: 1px solid #fff;
}
form.db-details {
        display: flex;
        flex-direction: column;
}
.field-wrap {
        display: flex;
        justify-content: space-between;
        margin: 0.5rem 0;
}
.field-wrap > label {
        flex-basis: 20%;
}
.field-wrap > input {
        height: 3rem;
        padding: 10px;
        box-shadow: unset;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1.1em;
}
.field-wrap > .help {
        flex-basis: 45%;
}
.hidden {
        display: none;
}
.section-title {
        display: flex;
        font-size: 1.32rem;
        align-items: center;
        justify-content: flex-start;
        margin: 2rem 0;
        font-weight: bold;
}

.try-again {
        display: flex;
        width: 100%;
        align-self: flex-start;
        text-decoration: none;
        color: red;
        max-width: max-content;
        border: 1px solid red;
}
a.try-again:hover {
        font-weight: 600;
}
.warning-message {
        display: none;
        color: red;
        margin-top: 20px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%;
}
.control-buttons {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
}
.try-again {
        display: none;
}
