html,
body {
    height: 100%;
    margin: auto;
    padding: 0;
    color: white;
    font-family: Arial;
    /*, Helvetica, sans-serif;*/
}

.container-fluid {
    position: relative;
    min-height: 100%;
    padding: 0;
    background-image: url("../images/image1.jpg");
    background-size: cover;
    background-position: center;
}

.bg-image {
    position: fixed;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.logoUnit {
    position: absolute;
    width: 29%;
    top: 39%;
    left: 3.2%;
}

#signup-panel {
    position: absolute;
    top: 10.7%;
    left: 35.5%;
    width: 29%;
}

#signup-panel #inner-panel {
    width: 100%;
    height: 100%;
    padding-left: 8%;
    padding-right: 8%;
    padding-top: 10%;
    padding-bottom: 5%;
    background: rgba(146, 157, 177, 0.5);
}

#signin-panel {
    position: absolute;
    top: 10.7%;
    left: 68.5%;
    width: 29%;
}

#signin-panel #inner-panel {
    width: 100%;
    height: 100%;
    padding-left: 8%;
    padding-right: 8%;
    padding-top: 20%;
    padding-bottom: 5%;
    background: rgba(146, 157, 177, 0.5);
}

.user-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2%;
    font-size: 2.8vw;
    color: rgba(197, 13, 250, 1);
}

.horizontal-line {
    width: 100%;
    height: 0.3vmin;
    background: #253334;
}

.vertical-line {
    width: 0.1vmin;
    height: 100%;
    background: black;
}

.header-txt {
    display: flex;
    justify-content: center;
    font-size: 1.4vw;
    font-weight: 600;
}

.form-group {
    margin-top: 3%;
    font-size: 1vw;
    margin-bottom: 3%;
}

.form-control {
    font-size: 0.7vw;
    font-weight: normal;
    padding: 0;
}

.form-group label {
    padding-left: 8%;
    margin-bottom: .5%;
}

.form-group input {
    border-top: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
    border-right: 1px solid #ced4da;
    border-left: none;
}

.input-group-text {
    background: white;
    border-top: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
    border-left: 1px solid #ced4da;
    border-right: none;
    padding: 1vmin 1.5vmin;
}

.btn-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    padding: 1.5%;
    color: white;
    font-size: 1vw;
    background: #253334;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-top: 3%;
    margin-bottom: 3%;
    border-radius: 55rem;
}

/* Large devices (laptops/desktops, 992px and up) */

@media only screen and (min-width: 992px) and (orientation: landscape) {
    .form-group {
        margin-top: 2.5%;
        font-size: 1vw;
        margin-bottom: 2.5%;
    }

    .form-control {
        font-size: 1vw;
        font-weight: normal;
        padding: 5% 1%;
    }

    .form-group label {
        margin-bottom: 2.5%;
    }
}