body {
    font-family: "Inter", sans-serif;
    background-color: #fcfbf9;
    margin: 0;
    min-height: 100vh;
    color: black;
}
header {
    width: 100%;
    padding: 24px 0;
}

nav {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

ul.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 700;
    font-size: 14px;
}

ul.nav-links li a {
    text-decoration: none;
    color: black;
    cursor: pointer;
}

ul.nav-links li a:hover {
    text-decoration: underline;
}

.login-btn {
    background-color: #b94a0a;
    color: white;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #a14308;
}

section.login-form {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

section.login-form h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

section.login-form p {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

label {
    font-size: 0.875rem;
    color: #1a1a1a;
    display: block;
    margin-bottom: 0.25rem;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    border: 1px solid #b84304;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #9a9a9a;
    outline: none;
    box-sizing: border-box;
}

input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #b84304;
    box-shadow: 0 0 0 2px #b84304;
    color: #1a1a1a;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    flex-grow: 1;
}

.password-wrapper button {
    position: absolute;
    right: 4.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
    font-size: 1.125rem;
    padding: 0;
    display: flex;
    align-items: center;
}

.password-wrapper span {
    position: absolute;
    right: 1rem;
    font-size: 0.75rem;
    color: #1a1a1a;
    user-select: none;
}

.forgot-password {
    text-align: right;
    font-size: 0.75rem;
    color: #1a1a1a;
}

.btn-login {
    width: 100%;
    background-color: #b84304;
    color: white;
    font-weight: 700;
    border-radius: 9999px;
    padding: 0.5rem 0;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
    font-size: 0.875rem;
}

section.new-user {
    background-color: #f7d6b4;
    border-radius: 0.5rem;
    padding: 2.5rem;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.new-user h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

section.new-user p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.btn-create-account {
    background-color: #b84304;
    color: white;
    font-weight: 700;
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    align-self: start;
}

footer {
    max-width: 1120px;
    margin: 80px auto 40px;
    padding: 0 24px;
    color: #4a4a4a;
    font-size: 12px;
    border-top: 1px solid #999999;
    display: flex;
    justify-content: space-between;
}