body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

p {
    margin: 10px 0 0;
    color: #555;
}

.container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 300px;
}

h1 {
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
}

input {
    padding: 8px;
    margin-top: 5px;
    border-radius: 4px;
}

button {
    margin-top: 15px;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.bio {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #e9f5ff;
    border-left: 4px solid #0077cc;
    border-radius: 4px;
}

.bio h2 {
    margin-top: 0;
    color: #0077cc;
}

.bio p {
    margin: 10px 0 0;
    color: #555;
}

.preview {
    margin-top: 20px;
}

.preview h2 {
    margin-bottom: 10px;
    color: #333;
}

.note a {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
}