*{
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
}
.hero{
    height: 100%;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(Engineering.jpg);
    background-position: center;
    background-size: cover;
    position: absolute;
}
.formbox{
    width: 380px;
    height: 480px;
    position: relative;
    margin: 7.3% auto;
    background: transparent;
    border: 3px solid #777;
    padding: 6px;   
    overflow: hidden; 
    border-radius: 30px;
    backdrop-filter: blur(8px);
}
.button-box{
    width: 220px;
    margin: 35px auto;
    position: relative;
    box-shadow: 0 0 20px 9px #5ce;
    border-radius: 30px;
}
.toggle-btn{
    padding: 10px 30px;
    cursor: pointer;
    background: transparent;
    border: 0;
    outline: none;
    position: relative;
    display: inline-flex;
    color: azure;
}
#btn{
    top: 0;
    left: 0;
    position: absolute;
    width: 110px;
    height: 100%;
    background: linear-gradient(to right, #ff105f, #ffad06);
    border-radius: 30px;
    transition: 0.5s;
}
.logo-img{
    margin: 30px auto;  
    text-align: center;  
}
.logo-img img{
    width: 200px;
    border: 2px solid darkcyan;
}
.input-group{
    top: 180px;
    position: absolute;
    width: 280px;
    transition: 0.5s;
    color: azure;
}
.input-group ::placeholder{
    color: azure;
}
.input-field{
    width: 100%;
    padding: 10px 0;
    margin: 5px 0;
    border-left: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #999;
    outline: none;
    background: transparent;
    color: #fff;
}
.submit-btn{
    width: 85%;
    padding: 10px 30px;
    cursor: pointer;
    display: block;
    margin: auto;
    background: linear-gradient(to right, #ff105f, #ffad06); 
    border: 0;
    outline: none;
    border-radius: 30px;   
    color: azure;
}
.check-box{
    margin: 30px 10px 30px 0;
}
span a{
    text-decoration: underline #fff;
    color: #fff;
}
span{
    color: #777;
    font-size: 12px;
    bottom: 68px;
    position: absolute;
    color: azure;
}
#login{
    left: 50px;
    color: azure;
}
#register{
    left: 450px;
    color: azure;
}
@media (max-width: 600px) {
    .formbox {
        width: 80%;
        margin-top: 110px;
        height: 450px;
        padding: 20px;
        border-radius: 20px;
        overflow: hidden;
    }

    .button-box {
        width: 178px;
        margin: 20px auto;
        box-shadow: 0 0 15px 7px #5ce;
    }

    .toggle-btn {
        font-size: 14px;
        padding: 8px 20px;
    }

    #btn {
        width: 100px;
    }

    .logo-img img {
        width: 120px;
    }

    .input-group {
        width: 90%;
        left: 0px;
        top: 140px;
        position: relative;
        padding: 0 10px;
    }

    .input-field {
        font-size: 14px;
        margin: 10px 0;
    }

    .submit-btn {
        width: 100%;
        font-size: 14px;
        padding: 10px;
    }
    span {
        font-size: 12px;
    }

    #login {
        left: 5px;
        top: -20px;
        position: relative;
    }

    #register {
        left: 130%;
        top: -312px !important;
        position: relative;
    }
}
