body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #ffffffea;
    height: 400px;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 40px 20px 90px rgba(0, 0, 0, 0.212);
}

h2 {
    margin-bottom: 50px;
}

label {
    display: block;
    margin-bottom: 15px;
}

input {
    width: 95%;

    padding: 8px;
    margin-bottom: 30px;
    border: 2px solid #ccc;
    border-radius: 3px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-size: 16px;
}
