body {
    margin: 0;
    padding: 0;
}

.main {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: block;
}

#shadeimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.main::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.726);
    /* black shade */
    z-index: 0;
    /* stays behind the logo */
}

#overlay_img {
    position: absolute;
    top: 40px;
    left: 100px;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 160px;
}


.main_box {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 500px;
    height: 650px;
    background-color: rgba(0, 0, 0, 0.603);
    color: white;
    display: flex;
    padding-top: 30px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}


.main_box h1 {

    display: flex;
    font-family: sans-serif;
    margin-right: 250px;
    margin-top: 0;
}

.inputfield {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

#input1,
#input2 {
    width: 350px;
    height: 45px;
    border-radius: 5px;
    background-color: #343434;
    border: 0;
    padding-left: 20px;
    color: white;
    
}


button {
    width: 370px;
    height: 45px;
    background-color: #E30B0E;
    margin-top: 30px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    border: 0;
    
}
button:active{
    background-color: #e30b0ebe;
}

.checkboxfull {
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

#remember {
    margin-top: 10px;
}

#help {
    text-decoration: none;
    color: white;
    margin-left: 155px;
}

.bottom_signup {
    display: flex;
    align-items: center;
    margin-top: 100px;
    font-family: sans-serif;
}

#signup {
    text-decoration: none;
    color: white;
    cursor: pointer;
    margin-right: 90px;
}

.bottom {
    font-family: sans-serif;
    font-size: small;
}