body {
    font-family: Arial, sans-serif;
}

form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

form label {
    display: block;
    margin: 10px 0 5px;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="date"],
form select {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
}

form button {
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #45a049;
}

.profile {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

.profile-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.profile-image {
    width: 330px;
    height: auto;
    margin: 10px;
    object-fit: cover;
    border-radius: 10px;
}
