body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
}

.container {
    background-color: #0E2954;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    height: 100vh;
    position: relative;
}

.login-image {
    /* background-image: url('../images/ACADAO_BG.jpg');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%; */

    background-image: url('../images/ACDAPS2.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;


}

.login {
    position: fixed;
    /* border: 1px solid black; */
    height: 300px;
    width: 400px;
    /* top: 220px;
        right: 330px; */
    top: calc(50% - 150px);
    left: calc(50% - -50px);
    border-radius: 10px;
    /* background-color: #2480a9; */
    background: linear-gradient(to right, #2480a9 50%, #1b608a);
}

.login-child form {
    padding: 20px;
}

.form-signin {
    text-align: center;
}

.form-signin h3 {
    color: #ffffff;
    padding-bottom: 10px;

}

@media screen and (max-width: 930px) {
    .login-image {
        display: none;
    }

    .login {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 250px;
        width: 350px;
    }

    .login-image-mobile {
        background-image: url('../images/ACADAO-removebg-preview1.png');
        background-size: cover;
        position: absolute;
        height: 200px;
        width: 200px;
        top: 10px;
        
    }
}