html {
    height: 100%;
    display: grid;
}

body {
    height: 100%;
    display: grid;
    background: -webkit-linear-gradient(to right, #ffd89b, #19547b);
    background: linear-gradient(to right, #ffd89b, #19547b);
}

.login-container {
    display: grid;
    grid-template-columns: auto auto;
    width: fit-content;
    height: fit-content;
    margin: auto;
    box-shadow: 0 6px 14px 0 rgba(0, 0, 0, 0.5);
}

#LoginIntro {
    background: white;
    text-align: center;
    padding: 40px 50px 60px 50px;
}

#LoginIntro>h3 {
    color: #232526;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    margin: 0px;
}

#LoginIntro>a {
    font-size: 10pt;
}

.LoginInputGroup {
    margin: 30px 0px;
}

.btnLoginSubmit {
    width: 100%;
    margin-top: 20px;
}

#LoginForm {

    background: #232526;
    background: -webkit-linear-gradient(to top, #3a3b3d, #232526);
    background: linear-gradient(to top, #3a3b3d, #232526);
    padding: 40px 50px 200px 50px;
    width: 450px;
}

#LoginForm>h3 {
    font-family: 'Noto Sans JP', sans-serif;
    color: white;
}

.input-group-prepend span {
    width: 40px;
    background-color: #1a73e8;
    color: white;
    border: 0 !important;
}

input:focus {
    outline: 0 0 0 0 !important;
    box-shadow: 0 0 0 0 !important;
}

.remember {
    color: white;
}

.remember input {
    width: 20px;
    height: 20px;
    margin-left: 15px;
    margin-right: 5px;
}

.links {
    color: white;
}

.links a {
    margin-left: 4px;
    color: #007bff !important;
    cursor: pointer;
}

a:hover {
    color: #0056b3 !important;
}

.form-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    padding: 20px 40px;
    background-color: white;
    border: 0px solid black;
    box-shadow: 0 6px 14px 0 rgba(0, 0, 0, 0.5);

}

.logo {
    font-size: 60px;
    color: #333333;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 50px;
    background-color: #fff;
    margin: 0 auto;

    background-image: url("../images/senzo_logo.svg");
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.LoginHeader {
    font-size: 25pt;
}

#illustration {
    width: 350px;
}

#forgotPwForm>p {
    margin-bottom: 25px !important;
}

.btn_fromExit_back {
    font-size: 14pt;
    position: absolute;
    left: 2%;
    top: 3%;
    background-color: Transparent;
    background-repeat: no-repeat;
    border: none;
}

#createAccForm h4 {
    padding: 0px 0px 20px 0px;
}

.input-group-text {
    background-color: #343a40 !important;
}

@media (max-width: 767px) {
    #LoginIntro {
        display: none;
    }

    #LoginForm {
        padding: 20px 30px 100px 30px;
        width: 300px;
    }

    .card-footer {
        font-size: 10pt;
    }

    .form-container {
        width: 350px;
        padding: 15px 10px;
    }

    #forgotPwForm>h2 {
        font-size: 17pt;
    }

    #forgotPwForm>p {
        font-size: 11pt;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    #LoginForm {
        padding: 30px 30px 100px 30px;
        width: 350px;
    }

    #LoginIntro {
        background: white;
        text-align: center;
        padding: 30px 30px 60px 30px;
        /* width: 350px; */
    }

    #LoginIntro>h3 {
        color: #232526;
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 700;
        margin: 0px;
        font-size: 16pt;
    }

    #LoginIntro>a {
        font-size: 7pt;
    }

    #illustration {
        width: 250px;
    }
}

@media (min-width: 1024px) and (max-width: 1919px) {}

@media (min-width: 1920px) {}