body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('work.jpg') no-repeat center center/cover;
}

.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.8); /* Dark background with transparency */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 300px;
}

h1, p {
    color: #ffffff;
}

input, button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

button {
    background: #ff5e57;
    color: white;
    cursor: pointer;
}