body {
    /*padding-top: 40px;
    padding-bottom: 40px;
    background-color: #ADABAB;*/
    height: 100vh;
    background-color: cornflowerblue !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-signin {
    max-width: 330px;
    padding: 15px 0;
    margin: 0 auto;
    color: #017572;
}

.form-signin .form-signin-heading,
.form-signin .checkbox {
    margin-bottom: 10px;
}

.form-signin .checkbox {
    font-weight: normal;
}

.form-signin .form-control {
    position: relative;
    height: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    font-size: 16px;
}

.form-signin .form-control:focus {
    z-index: 2;
}

.form-signin input[type="email"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-color:#017572;
}

.form-signin input[type="password"] {
    margin-bottom: 10px;
    /*border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-color:#017572;*/
}

/* .maincontainer {
    background-color: cornflowerblue;
} */

.innercontainer {
    width: 800px;
    height: 400px;
    border-radius: 0.5rem;
    box-shadow: 12px 12px 50px 10px;
}

.leftcontainer {
    background-color: lightslategray;
    width: 35%;
}

.rightcontainer {
    background-color: white;
    width: 65%;
}

@media screen and (max-width: 575px) {
    .maincontainer {
        width: 100%;
        height: auto;
    }
    .innercontainer {
        width: 100%;
        height: auto;
        flex-direction: column;
    }
    .rightcontainer {
        padding-top: 10px;
        background-color: white;
        width: 100%;
    }
    .leftcontainer {
        width: 100%;
        height: 100px;
        text-align: center;
        padding-top: 10px;
    }
}

h2{
    text-align: center;
    color: #017572;
}

h1{
    font-weight: bold !important;
}

.btn-login {
    background-color: lightslategray !important;
    border-color: lightslategray !important;
    padding: 7px 24px !important;
    color: white !important;
    margin-top: 10px;
}