* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    background-color: #000000;
    color: #ff0000;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: fill; /* This stretches it to fill the entire screen */
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.login-box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 240px;
    height: 480px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0); /* Optional: adds transparency */
    z-index: 2;
    position: relative;
}

.input-box .input-field {
    width: 100%;
    height: 60px;
    font-size: 2em;
    padding: 0 25px;
}