html, body {
    box-sizing: border-box;
    background: #EDF0F4;
    margin: 0px;
    padding: 0px;
    position: relative;
    min-height: 100vh;
}

@media (max-width:768px) {
    .form-container {
        padding-left: 0% !important;
    }
}

@media (max-width:1430px) {
    .container {
        max-width: 1400px;
    }
}

.wrapper {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    overflow: auto;
    position: relative;
}

form {
    width: 100%;
    padding: 0px 50px;
}

.form-container {
    display: flex;
    flex-direction: column;
    -moz-box-pack: center;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding-left: 8%;
    z-index: 2;
}

.image {
    position: absolute;
    inset: 0px;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.form-bg-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    max-width: 420px;
    background: #fff;
}

.bg-orange {
    width: 100%;
    height: 500px;
    overflow: hidden;
    transform: skewY(-5deg);
    transform-origin: 0;
    background-color: #EEF0F2;
    position: absolute;
    z-index: -1;
}

.form-signin {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: 0 auto;
}

.form-signin .form-control {
    position: relative;
}

.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;
}

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

.btn-google {
    background-image: url('/assets/img/google-logo.svg');
    background-size: 25px;
    background-position: 12px center;
    background-repeat: no-repeat;
    box-shadow: 0 3px 5px 0 rgba(36, 50, 66, .2);
    transition: box-shadow .15s;
    color: #394446;
}

.form-option {
    margin: 24px;
    text-align: center;
}

.cardlogin {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .1);
    padding: 30px 25px;
}

.text-muted {
    color: rgb(143, 155, 179);
}

.google-sign-in {
    background: rgb(51, 102, 255);
    border: 1px solid rgb(51, 102, 255);
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    color: #fff;
}

.google-sign-in:hover {
    color: #fff!important;
}

.form-control {
    background: #f7f9fc;
    border: 1px solid #edf1f7;
}