body {
    margin: 0; 
    padding: 0;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #3b0b23, #d18dad);
    height: 100vh; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 300px;
    margin: 0 auto;
    padding: 35px;
    background-color: aliceblue;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button[type="submit"] {
    width: 106%;
    padding: 10px;
    background-color: #ae4ac2;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: rgb(130, 98, 180);
}

.profile-image {
    text-align: center;
    margin-bottom: 15px; 
}

.profile-image img {
    width: 100px; 
    height: 100px;
    border-radius: 50%; 
}