body {
    background-color: #88452a;
    background-image: linear-gradient(to top right, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 70%), url(../img/background.jpg);
    width: 100vw;
    height: 100vh;
    background-size: 101%;
    background-repeat: no-repeat;
    overflow-x: hidden;
    overflow-y: hidden;
    margin: 0;
    font-family: "Open Sans", arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position-y: 4%;
}

.login-container {
    background: rgba(0, 0, 0, 0.22);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    border-style: solid;
    border-color: white;
    border-width: 1px;
}

.login-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #fff;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #fff;
}

.input-group input {
    width: 378.4px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #88452a;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #a3573c;
}