body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    background-image: url('../background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(8px);
}

.login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    z-index: 1;
}

.form-container {
    margin-right: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    color: white;
    margin-bottom: 5px;
}

input {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    border: none;
}

button {
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #f0e1d2;
    cursor: pointer;
}

.welcome-container {
    color: #f0e1d2;
}

h1 {
    margin: 0 0 10px 0;
}

a {
    color: #f0e1d2;
    text-decoration: none;
    font-size: 14px;
}