* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial;
  font-size: 17px;
}
#login-sec .content {
    background: #000000d6;
   
    border-radius: 10px;
    display: flex;
    align-items: center;
}

#myVideo {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}
#login-sec {
    position: absolute;
    z-index: 1000;
    width: 100%;
    height: 100%;
}
#login-sec .container .row {
    width: 100%;
}
#login-sec .container {
    max-width: 900px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}
.left-side {
    display: flex;
    flex-direction: column;
    width: 50%;
}
.right-side {
    width: 50%;
}
.login-form-wrp label img {
    width: 20px;
    position: absolute;
    top: 10px;
    left: 5px;
}
.login-form-wrp label input {
    border: none;
    border-bottom: 2px solid #D1D1D4;
    background: none;
    padding: 10px 15px 10px 40px;
    transition: .2s;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
    display: block;
    width: 100%;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #fff !important;
}

.login-form-wrp label input::-webkit-input-placeholder { /* Edge */
  color: #fff;
    opacity: 0.8;
}

.login-form-wrp label input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
    opacity: 0.8;
}

.login-form-wrp label input::placeholder {
  color: #fff;
    opacity: 0.8;
}
.login-form-wrp {
    padding: 50px;
}
.login-form-wrp label {
    margin-bottom: 15px;
    display: block;
    position:relative;
}
.login__submit {
    background: #202A44;
    font-size: 14px;
    margin-top: 30px;
    padding: 16px 50px;
    border-radius: 26px;
    border: 0;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    transition: .2s;
    cursor: pointer;
    width: 100%;
}
.login__submit:hover {
    background: #EAAA00;
    color: #000;
}
.login-form-wrp label input:focus, .login__submit:focus,
.login-form-wrp label input:active{
    outline: 0;
    box-shadow: none;
    background: none;
    -webkit-appearance: none;

}

.button__icon {
	font-size: 24px;
	margin-left: auto;
	color: #7875B5;
}

.mySlides {display: none;}

.slideshow-container img {
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0 10px 10px 0;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}


@media only screen and (max-width: 767px) {
    .login-form-wrp {
    padding: 30px;
}
    #login-sec {
 
        padding: 0 20px;
    }
          #login-sec .content {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .left-side, .right-side{
        width:100%;
    }
    .slideshow-container img{
        height:250px;
        border-radius: 0 0 10px 10px;
    }
}
