*{
        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;
}
.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;
}
ul.items {
        list-style: none;
        padding: 1rem 0;
        margin-left: 2rem;

}
p {
        padding: 0.3rem 0;
}
.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;
}
.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;
}
ul {
        list-style: none;
        margin-left: 0px;
        padding: 1rem;
}
.try-again{
        display: flex;
        width: 100%;
        align-self: flex-start;
}