body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #1f1f1f;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #1B1F2E;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 24px;
}

main {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
    box-sizing: border-box;
}

h1 {
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    margin-bottom: 12px;
    color: #1f1f1f;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 14px;
}

.form-links {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.1);
}

.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-list li {
    margin-bottom: 16px;
}

.link-list li:last-child {
    margin-bottom: 0;
}

.link-list a {
    color: #2E7FF8;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 12px 16px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.2s;
}

.link-list a:hover {
    border-color: #2E7FF8;
    background-color: #f8fbff;
}