/* Background image */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;

    background-image: url("wit.png"); /* change filename here */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Form box */
.form-container {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 12px;
    width: 320px;
    color: white;
}

/* Title */
h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Inputs */
input {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px 0;
    border: none;
    border-radius: 6px;
    outline: none;
}

/* Button */
button {
    width: 100%;
    padding: 10px;
    background: #00c6ff;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #0072ff;
}
