body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f9f8f8;
}

header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 150px;
    display: block;
}

.login-btn {
    background: none;
    border: none;
    color: rgb(255, 0, 51);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

main {
    flex: 1;
    padding: 40px 20px;
}

footer {
    padding: 20px;
    text-align: center;
}

.footer-logo {
    display: block;
    width: 300px;
    margin: 0 auto 10px auto;
}

.footer-btn {
    background: none;
    border: none;
    color: rgb(255, 0, 51);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
}

.copyright {
    font-size: 12px;
    color: rgb(255, 0, 51);
}

.primary-btn {
    background-color: rgb(255, 0, 51);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 10px;
    text-align: left;
}

.secondary-btn-outlined {
    background: none;
    border: 1px solid rgb(255, 0, 51);
    color: rgb(255, 0, 51);
    padding: 15px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-bottom: 10px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
}

.logout-btn {
    background: none;
    border: none;
    color: rgb(255, 0, 51);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

.auth-main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-card,
.dashboard-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.dashboard-card {
    max-width: 420px;
    text-align: left;
}

.dashboard-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.dashboard-actions a {
    background: none;
    border: none;
    padding: 0;
    color: rgb(255, 0, 51);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
}

.auth-title,
.welcome-message {
    font-weight: 600;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 16px;
}

.auth-copy {
    color: #333;
    margin-bottom: 24px;
}

.auth-error {
    color: #b00020;
    background: #fdecec;
    border-radius: 5px;
    padding: 12px;
    margin-bottom: 16px;
}

.subtle-link {
    background: none;
    border: none;
    color: rgb(255, 0, 51);
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    box-sizing: border-box;
}

.auth-card .primary-btn {
    text-align: center;
}

hanko-login,
hanko-registration,
hanko-profile {
    --color: #333333;
    --color-shade-1: #8f9095;
    --color-shade-2: #e8e8e8;
    --brand-color: rgb(255, 0, 51);
    --brand-color-shade-1: #ff4d6d;
    --brand-contrast-color: white;
    --background-color: transparent;
    --error-color: #b00020;
    --link-color: rgb(255, 0, 51);
    --font-family: 'Inter', sans-serif;
    --font-size: 16px;
    --font-weight: 400;
    --border-radius: 5px;
    --container-padding: 0;
    --container-max-width: 100%;
    --headline1-font-size: 0;
    --headline1-margin: 0;
    --item-height: 48px;
    display: block;
    margin-bottom: 8px;
}

hanko-profile {
    --headline1-font-size: 20px;
    --headline1-margin: 1rem 0;
    margin-top: 24px;
    text-align: left;
}
