

/* login page css */

input[type=text], input[type=password] {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	box-sizing: border-box;
    transition: 0.5s;
    outline: none;
    border: 2px solid #ccc;
    border-radius: 4px;
  }

  input[type=text]:focus,input[type=password]:focus  {
    border: 2px solid #085964 !important;
  }

.form__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}
.brand__logo {
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 19px;
    font-weight: 600;
}

.form__wrapper {
    background: #ffffff;
    width: 900px;
    height: 473px;
    display: flex;
    align-items: center;
    justify-content: start;
    border: 5px solid #333;
    border-radius: 23px;
}
.form__banner {
    height: 100%;
}
.wrapper {
    display: flex;
    align-items: center !important;
    justify-content: center;
    height: 100vh;
    background: #f0f8ff78;
}
img.form__banner__image {
    width: 450px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    justify-content: center;
    height: 100%;
}
.form__area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 50%;
    padding: 0 50px;
}
img.brand__image {
    width: 128px;
}
.form__title {
    font-size: 1.9rem;
    font-weight: 600;
    text-transform: capitalize;
    color: #1b818f;
    letter-spacing: .1rem;
    margin-bottom: 27px;
}
.form__link {
    display: flex;
    text-transform: capitalize;
    justify-content: space-between;
}
.form__link a {
    text-decoration: none;
    color: #565454;
    font-weight: 500;
    font-size: 17px;
    transition: .4s ease;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out
}

.form__link a:hover {
   color: #085964;
   font-weight: 600;
}
.button__area{
	margin-top: 20px;
}
.label__color{
    color: #565454;
}
.button2 {
    padding: 11px 31px;
    margin-right: 21px;
    background: #085964;
    color: #fff;
    font-size: 17px;
    border: none;
    border-radius: 5px;
    width: 100%;
    transition: .3s ease-out;
    opacity: .7;
}

.button2:hover {
    opacity:1 ;
    cursor: pointer;

}
.bg__right {
    width: 49.90%;
    position: absolute;
    background: white;
    height: 100vh;
    top: 0;
    right: 0;
    z-index: -1;
    background-image: url("../img/abc.png");

}

.btn__group {
    margin-top: 20px !important;
}
.btn {
    width: 300px !important;
    border: none !important;
    text-transform: capitalize;
    border-radius: 5px !important;
    padding: 19px 0 !important;
    line-height: 0px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    cursor: pointer;
}
.btn__one {
    background-color: #140455 !important;
    border: none !important;
    color: #ffffff !important;
}
.btn__two {
    background-color: #1b818f !important;
    border: none !important;
    color: #ffffff !important;
}
.btn__two:hover {
    background-color: #0ca1b8 !important;
}
.input__area {
    height: 40px;
    border: 1px solid  #6B7280 !important;
    border-radius: 5px !important;
    width: 300px !important;
}
.forget__pass {
    margin-top: 11px !important;
    display: block;
    font-weight: 500;
}

#components-form-demo-normal-login .login-form-button {
    width: 100%;
}

@media only screen and (max-width: 700px) {
    .form__wrapper {
        background: #fcfcfc;
        width: 900px;
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .form__banner {
        display: none;
    }
    .bg__right {
        width: 100%;
        position: absolute;
        background: white;
        height: 100vh;
        top: 100px;
        right: 0;
        z-index: -1;
        
    }
    .form__area {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 22px;
    }
}
/* login page css end */