body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  overflow: hidden;
}
.container {
  max-width: 1330px;
  padding: 0px 15px;
  margin: 0 auto;
}
.image-section {
  background: url(images/login-background.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
}
.card-wrap {
  height: 100%;
}
div.login-card {
  height: 27rem;
  background-color: #FDEADE;
}
.card.w-50.login-card h1 {
    text-align: center;
    color: #ff4913;
    font-size: 15px;
    font-weight: 800;
    padding-top: 51px;
}
.vl {
    border-left: 2px solid #ff4913;
    height: 303px;
    margin-left: 45px;
    margin-right: 20px;
}
.username-section .heading-section h2 {
    color: #ff5516;
    font-size: 43px;
    font-weight: revert;
    text-align: center;
}
.cl {
    border-left: 2px solid #ff4913;
    height: 10px;
    margin-left: 11px;
    height: 32px;
}
.login-container {
    margin: 20px 0px 0px 25px;
}
input[type="text"] {
    margin-bottom: 14px;
}
div .remember-section {
    padding-right: 36px;
    color: orangered;
    font-weight: 600;
}


input.username-section  {
    width: 17rem;
    background-color: transparent;
    border: 1px solid;
    height: 36px;
    border-radius: 4px;

}
input.password-section {
    width: 17rem;
    background-color: transparent;
    border: 1px solid;
    height: 36px;
    border-radius: 4px;


}

input[type=checkbox] {
    accent-color: orangered;
    height: 11px;
}

.password-section a {
    color: orangered;
    text-decoration: none;
    font-weight: 500;
}


.login-button {
    padding-top: 15px;
}

.login-form {
    padding-top: 21px;
}


.card.login-card {
    border: none;
    align-self: center;
    box-shadow: -5px -4px 18px #fdffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 750px;
    padding: 40px 20px;
}
.login-card h5{
    color: #ff4913;
    font-weight: bold;
    font-size: 17px;
}

label.animated-lable {
    color: black;
    font-weight: 600;
    font-size: 10px;
    margin-left: 4px;
}

.login-section-log .remember-section label {
    font-size: 13px;
}
.login-section-log .password-section a {
    font-size: 13px;
    margin-left: 31px;
}

.login-button button {
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}




.input-group {
    position: relative;
    
}

.input-group label {
    position: absolute;
    top: 20px;
    left: 15px;
    transform: translateY(-50%);
    font-size: 10px;
    color: #383838;
    padding: 0 5px;
    pointer-events: none;
    transition: .5s;
}

.input-group input {
    width: 311px;
    height: 42px;
    font-size: 10px;
    color: #383838;
    padding: 0 15px;
    background: transparent;
    outline: none;
    border-radius: 5px !important; 
}

.input-group input:focus~label,
.input-group input:valid~label {
    top: 0;
    font-size: 10px;
    background: #FDEADE;
}

.login-section-log {
    justify-content: space-between;
}
.fa-eye-slash:before,.fa-eye:before {
    content: "\f06e";
    position: absolute;
    top: 12px;
    right: 11px;
}

/*----------responsive-------*/
@media only screen and (max-width:767px){
    .image-fluid,.vl {
        display: none;
    }
    .card.login-card{
        width: 362px;
    }
    .login-container{
        margin: unset;
    }
}
#toastBox {
    position: fixed;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    overflow: hidden;
    padding: 20px;
    z-index: 999999999999999999;
}

.Toast {
    width: 400px;
    height: 80px;
    background: #fff;
    font-weight: 500;
    margin: 15px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    border-radius: 5px;
    position: relative;
}

.Toast i{
    margin: 0 20px;
    font-size: 35px;
    color: green;
}

.Toast.error i{
    color: red;
}

.Toast.invalid i{
    color: orange;
}

.Toast::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: green;
    animation: anim 5s linear forwards;
}

.Toast.error::after{
    background-color: red;
}

.Toast.invalid::after{
    background-color: orange;
}
@keyframes anim{
    100%{
        width: 0%;
    }
}