body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f2f5;
}
.login-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
}
input {
    display: block;
    width: 350px;
    margin: 0 auto 15px auto; /* "auto" on left/right centers the block */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't break the width */
}
button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.avatar {
    width: 150px;        /* Sets the size */
    height: 170px;
 /* border-radius: 50%;  Makes the image a circle */
    display: block;      /* Necessary for auto-margins to work */
    margin: 0 auto 15px auto; /* Centers the image and adds bottom spacing */
    object-fit: cover;   /* Keeps the image from looking stretched */
}