body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

.container {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.buttons a {
    text-decoration: none;
}

.auth-button {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

.auth-button.google {
    background-color: #145bd0;
}

.auth-button.google:hover {
    background-color: #357abd;
}

.auth-button.facebook {
    background-color: #4267b2;
}

.auth-button.facebook:hover {
    background-color: #365899;
}

.icon {
    width: 20px;
    height: 20px;
}

.connected-accounts {
    margin-top: 20px;
}

.connected-account {
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.connected-account a {
    color: #4267b2;
    text-decoration: none;
}

.connected-account a:hover {
    text-decoration: underline;
}

.reconnect-link {
    text-decoration: none;
}

.reconnect-button {
    padding: 8px 16px;
    font-size: 14px;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.reconnect-button.google {
    background-color: #4285f4;
}

.reconnect-button.google:hover {
    background-color: #357abd;
}

.reconnect-button.facebook {
    background-color: #4267b2;
}

.reconnect-button.facebook:hover {
    background-color: #365899;
}

select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    border-radius: 5px;
}

.review {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    text-align: left;
}

.review:last-child {
    border-bottom: none;
}