body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    background: #f0f0f0;
    margin: 0;
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 600px;
}

input {
    padding: 10px;
    width: 200px;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    background: #2b6cb0;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #2c5282;
}

.profile {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile img {
    border-radius: 50%;
}

.profile a {
    color: #2b6cb0;
    text-decoration: none;
}

.profile a:hover {
    text-decoration: underline;
}