#body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("https://car-images.bauersecure.com/wp-images/3639/ferrari_f8_spider_68.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    filter: grayscale(10%) blur(4px);
}

#body {
    height: 100vh;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    padding: 0;
    margin: 0;
}

#logo {
    width: 40%;
    margin-top: -10%;
    margin-left: 25%;
}

#img-div {
    margin-top: 3%;
}

#form-div {
    width: 25%;
    height: auto;
    margin-top: 1.5%;
    border-radius: 7px;
    background-color: rgba(0, 0, 0, 0.7);
    margin-left: -4%;
    line-height: 2rem;
}

#form-div h2 {
    color: white;
    text-align: center;
}

#form-div #label1 {
    font-weight: bold;
    color: white;
    font-size: 110%;
    padding-left: 8px;
}

#form-div #label2 {
    font-weight: bold;
    color: white;
    font-size: 110%;
    padding-left: 8px;
}

#form-div #pass-label {
    font-weight: bold;
    color: white;
    font-size: 110%;
    padding-left: 8px;
}

#form-div #input1 {
    background-color: rgba(247, 242, 242, 0.884);
    margin-left: 2%;
    width: 95%;
    height: 30px;
    border: none;
    border-radius: 5px
}

#form-div #input2 {
    margin-left: 2%;
    width: 95%;
    height: 30px;
    background-color: rgba(247, 242, 242, 0.884);
    border: none;
    border-radius: 5px;
}

#form-div #password {
    background-color: rgba(247, 242, 242, 0.884);
    margin-left: 2%;
    width: 95%;
    height: 30px;
    border: none;
    border-radius: 5px;
}

#form-div #label3 {
    color: white;
    font-size: 13px;
}

p {
    margin-top: -6px;
    color: white;
    font-size: 13px;
}

#signup {
    color: blue;
    font-weight: bold;
    text-decoration: underline;
}

#signup:hover {
    cursor: pointer;
}

#form-div button {
    font-weight: 750;
    margin-top: 2%;
    margin-bottom: 10%;
    margin-left: 1.5%;
    width: 97%;
    height: 40px;
    border: 2px solid rgb(255, 187, 0);
    background-color: rgb(255, 187, 0);
    border-radius: 8px;
    color: black;
}

#form-div button:active {
    border-color: rgb(160, 111, 6);
}