body {
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.8), rgba(162, 60, 57, 0.8)), url('path-to-your-image.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

a {
    color: white;
}

h1 {
    margin-bottom: 20px;
}

form {
    background: rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
}

label {
    display: block;
    margin-bottom: 10px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
}