body {
    background-color: #faf9f6;
    font-family: serif;
    margin: 0;
    padding: 40px 24px;
    color: #1a1a1a;
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

p.small-dot {
    font-size: 0.6rem;
    margin-bottom: 16px;
}

label {
    display: block;
    margin-bottom: 4px;
}

label.password-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

label.password-label span {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
    border: 1px solid #b75a1a;
    border-radius: 9999px;
    padding: 8px 16px;
    text-align: center;
    color: #8c8c8c;
    font-size: 0.875rem;
    outline: none;
    box-sizing: border-box;
    transition: box-shadow 0.2s ease;
    width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus {
    box-shadow: 0 0 0 2px #b75a1a;
    border-color: #b75a1a;
    color: #8c8c8c;
}

ul.password-requirements {
    list-style: disc inside;
    font-size: 0.75rem;
    color: #1a1a1a;
    padding-left: 0;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 2rem;
}

ul.password-requirements li {
    flex: 1 1 45%;
    min-width: 180px;
}

p.description {
    font-size: 0.875rem;
    max-width: 400px;
    margin-bottom: 16px;
    line-height: 1.3;
}

label.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

button {
    background-color: #b75a1a;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    padding: 8px 24px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.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;
}

button:hover {
    background-color: #a04e17;
}

img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

p.bottom-dot {
    font-size: 0.6rem;
    margin-top: 16px;
}