body {
    background-color: #fff4f4;
    font-family: Arial, sans-serif;
    display: flex;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-content: center;
}

.container {
    background: var(--general-color-four);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
input {
    padding: 10px;
    margin: 10px 0;
    width: 100%;
    border: none;
    border-radius: 5px;
}
button {
    background: var(--general-color-one);
    color: var(--general-color-three);
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.error {
    font-size: 12px;
    color: red;
}

#password-strength {
    display: flex;
    margin-top: 5px;
}
.bar {
    width: 30px;
    height: 5px;
    margin-right: 3px;
    background-color: #ccc;
    transition: background-color 0.3s ease;
}

.strength-indicator {
  width: 20%;
  height: 5px;
  margin-top: 5px;
  background-color: #ccc; /* Default color */
}

.password-indicator {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

small {
    width: 90%;
    display: block;
}

form {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    width: 80%;
}

form div {
    width: 100%;
}

header {
    width: 100%;
}

.site-logo {
    position: absolute;
}

nav {
    display: flex;
    gap: 20px;
    transition: max-height 0.3s ease;
    position: absolute;
    top: 20rem;
    align-self: center;
    width: 90%;
    margin-left: 5rem;
}

#agreement-checkbox {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

#agree-terms {
    width: fit-content;
    margin-right: 10px;
    width: 20px;
}

header div {
    height: 20rem;
}

@media (max-width: 768px) {
    nav {
        width: 90%;
        margin-left: 5%;
        top: 11rem;
    }

    nav.open {
        max-height: 500px;
        left: 0;
        padding-bottom: 20px;
        top: 11rem;
        width: 90%;
    }
}