body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.top-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    padding: 0 20px;
    background-color: #fff;
}

.logo {
    font-size: 48px;
    font-weight: bold;
}

.right-section {
    text-align: right;
}

.right-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.right-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.auth-buttons button {
    margin-left: 10px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #eee;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}