body {
    background: #04334D;
    color: #0090D4;
    font-family: 'Helvetica', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#logo {
    width: 100%;
    max-width: 300px;
    margin: 50px auto;
}

h1, .h1-style {
    font-size: 30px;
    margin: 0 0 0.5rem;
    color: #000;
}

h2, .h2-style {
    font-size: 20px;
    margin: 0 0 0.5rem;
    color: #000;
}

h3, .h3-style {
    font-size: 18px;
    margin: 0 0 0.5rem;
    color: #000;
}

p {
    color: #444446;
    font-size: 1rem;
}

p a {
    color: #0090D4;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

.text-lg {
    font-size: 1.25rem;
    font-weight: bold;
}

.text-primary {
    color: #0090D4;
}

.container {
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
}

.panel {
    display: flex;
    flex-direction:column;
    max-width: 600px;
    background: #fff;
    padding: 40px;
    border-radius: 5px;
}

@media screen and (min-width: 768px) {
    .panel {
        width: 100%;
    }
}

.box {
    display: flex;
    flex-direction: column;
}

.box-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.box label {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.25rem;
}

.box input[type="text"],
.box select,
.box input[type="number"] {
    background-color: #fff;
    padding: 1rem 1.5rem;
    border: 2px solid #04334d;
    border-radius: 5px;
}

.submitinput {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1;
    padding: 1rem 1.875rem;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    color: #fff;
    border-radius: 30px;
    background-color: #0090D4;
}

.submitinput:hover {
    background-color: #00608d;
    color: #fff;
    border: none;
}

.error {
    color: #ff3434;
    display: none;
}

.unitswitcher {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
.unitswitcher a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-radius: 30px;
    background-color: #e0e0e0;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.unitswitcher a.active {
    background-color: #0090D4;
    color: #fff;
}

.unitswitcher a:hover {
    background-color: #0090D4;
    color: #fff;
}

#note {
    width: auto;
    max-width: 550px;
    margin: 3.125rem auto;
    text-align: center;
    padding: 0 1rem;
}

#note p {
    font-size: 0.875rem;
    color: #fff;
}

#note p a {
    color: #fff;
    text-decoration: underline;
}