* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1100px;
    display: flex;
    overflow: hidden;
}

.login-input:-webkit-autofill,
.login-input:-webkit-autofill:hover,
.login-input:-webkit-autofill:focus,
.login-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #333 !important;
    font-size: 1rem !important;
    transition: none !important;
}



.illustration-side {
    width: 55%;
    background-color: #f5f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .illustration-side img {
        width: 100%;
        max-width: 600px;
        height: auto;
    }

.form-side {
    width: 45%;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-text {
    display: flex;
    margin-bottom: 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .welcome-text svg {
        height: 50px;
        width: auto;
    }

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.brand-subtitle {
    color: #4b5563;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.brand-description {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    color: #6b7280;
}

.camera-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #8b8ccc;
    margin-right: 5px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-group {
    margin-bottom: 1rem;
}

.login-label {
    display: block;
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.login-input {
    width: 100%;
    /* padding: 10px 10px 10px 50px; */
    outline: none;
    letter-spacing: 0.9px;
    height: 3rem;
    padding: 0 3rem 0 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: white !important;
    -webkit-text-fill-color: #333 !important; /* for autofill */
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    transition: none !important;
}

    .login-input::placeholder {
        color: #9ca3af;
        font-size: 14px;
        font-weight: 500;
    }

.icon-input {
    display: flex;
    align-items: center;
    position: relative;
}

    .icon-input svg {
        margin: -3px 10px;
        fill: #a3a3a3;
        position: absolute;
    }

.toggle-password {
    position: absolute;
    right: 2.5rem;
    bottom: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s ease;
}

    .toggle-password:hover {
        color: #374151;
    }

    .toggle-password svg {
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.login-btn {
    width: 100%;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, #8788d0 0%, #a3a2b6 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.5px;
}

    .login-btn:hover {
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
        transform: translateY(-2px);
    }

    .login-btn:active {
        transform: translateY(1px);
        box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
    }

.error-message {
    font-size: 12px;
    text-align: center;
    color: red;
    margin-bottom: 1rem;
}

@media (max-width: 1200px) {
    body {
        align-items: normal;
        padding: 0;
    }

    .login-container {
        max-width: 100%;
    }
}

@media (max-width: 1000px) {
    .form-side {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    body {
        align-items: center;
        padding: 1rem;
        background-color: #f5f3ff;
    }

    .login-container {
        flex-direction: column;
        max-width: 400px;
    }

    .form-side {
        padding: 2rem;
    }

    .illustration-side {
        display: none;
    }

    .form-side {
        width: 100%;
    }
}

.version-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
}

.spinner {
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
    margin: auto;
    padding: 0px 10px;
}

    .spinner div {
        position: absolute;
        width: 2px;
        height: 6px;
        background: #fff;
        border-radius: 4px;
        opacity: 0.2;
        transform-origin: center 13px;
        animation: fade 1.2s linear infinite;
    }

        .spinner div:nth-child(1) {
            transform: rotate(0deg);
            animation-delay: 0s;
        }

        .spinner div:nth-child(2) {
            transform: rotate(30deg);
            animation-delay: -1.1s;
        }

        .spinner div:nth-child(3) {
            transform: rotate(60deg);
            animation-delay: -1s;
        }

        .spinner div:nth-child(4) {
            transform: rotate(90deg);
            animation-delay: -0.9s;
        }

        .spinner div:nth-child(5) {
            transform: rotate(120deg);
            animation-delay: -0.8s;
        }

        .spinner div:nth-child(6) {
            transform: rotate(150deg);
            animation-delay: -0.7s;
        }

        .spinner div:nth-child(7) {
            transform: rotate(180deg);
            animation-delay: -0.6s;
        }

        .spinner div:nth-child(8) {
            transform: rotate(210deg);
            animation-delay: -0.5s;
        }

        .spinner div:nth-child(9) {
            transform: rotate(240deg);
            animation-delay: -0.4s;
        }

        .spinner div:nth-child(10) {
            transform: rotate(270deg);
            animation-delay: -0.3s;
        }

        .spinner div:nth-child(11) {
            transform: rotate(300deg);
            animation-delay: -0.2s;
        }

        .spinner div:nth-child(12) {
            transform: rotate(330deg);
            animation-delay: -0.1s;
        }

@keyframes fade {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

.button-text {
    display: inline-block;
}

.hidden {
    display: none !important;
}
















/*body , html{
	margin: 0px ;
	padding: 0px !important;
	
	
}
body {
	background-image: url('../Images/login_bg5.jpg');
	background-size: auto;
	background-repeat: no-repeat;
}
.login_sec{
	display: inline-block;
	width: 100%;
	max-width: 960px;
	padding:0px  !important;
}
.bg_transparent{
	background-color: transparent !important;
}
.login_wraper{
	padding: 15px;
	background-color: #fff;
	display: inline-block;
	width: 100%;
	
	border: 0px solid transparent;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
	min-height: 550px;
}
.menu_list{
	list-style: none;
	width: 100%;
	padding: 0px;
	margin-top: 15px;
	display: inline-block;
}
.menu_list li{
	display: inline-block;
	width: auto;
	margin: 5px 2px;
}
.software_version{
	
	font-family: 'titillium_webregular';
	display: inline-block;
	width: 100%;
	text-align: center;
	margin-top: 15px;
	font-size: 14px;
	letter-spacing: 1px;
	
}
.Logo_Label{
	font-size: 28px;
	 font-family: 'titillium_webbold';
}
.menu_list li a{
	
	font-size: 14px;
	color: #fff;
	font-family: 'titillium_websemibold';
	padding: 5px 20px;
	background-color: steelblue;
}
.bg_white{
	background-color: rgba(255,255,255,0.9);
}
.login_bg_transparent{
	background-color: transparent !important;
}
.login_close{
	width: 50px;
	position: absolute;
	color: #fff;height: 50px;
	top:0px; right: 0px;
	font-size: 24px !important;
	z-index: 2000;
	margin: 0px;line-height: inherit;
	background-color: green!important;
}
.login_logo_label{
	display: inline-block;
	width: 100%;
	text-align: center;
	text-transform: uppercase;
	font-size: 18px;
	font-family: 'titillium_webbold';
}
.login_bg_2{
	
	background-image: url(../Images/login_bg2.jpg);
    background-size: cover;
	background-position: center;
    background-repeat: no-repeat;
	width: 100%;
	height: 100vh;
    background-attachment: fixed;
}
.centered_box{
	float: none !important;
	margin:50px auto 0px auto !important;
	padding: 0px 15px;
	border: 5px solid rgba(255,255,255,0.5);
}
input, button {
  border: none;
  outline: none;
  
  
}
.login_img{
	text-align: center;
	vertical-align: middle;
}
.login_img img{
	margin-top: 130px;
	vertical-align: middle;
	max-width: 350px;
}
.LoginBtn{
	background-color: #34c395;
}
.LoginBtn2{
	background-color: #0B5098;
	margin-top: 5px !important;
}
.login_sec{
	position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	border-radius: 5px;
	background-color: #fff;
    width: 100%;
	max-width: 320px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.09);
    height: 380px;
}
.LoginBox img{
	max-width: 70PX;
    width: 100%;
    max-height: 360px;
    margin:0px auto 25px auto;
}
.tip {
  font-size: 20px;
  margin: 40px auto 50px;
  
}
.login_logo{
	max-width: 150px;
	margin: 15px auto;
	width: 100%;
}
.logo_label{
	font-weight: normal;
    font-size: 18px;
    color: #333;font-family: 'titillium_websemibold';
    margin-top: -28px;
    position: relative;
    display: inherit;
    width: 100%;
    background: #fff;
	text-transform: uppercase;
  text-align: center;
    max-width: 160px;
    
    margin-bottom: 25px;
}
.cont {
  overflow: hidden;
  position: relative;
		width: 100%;
  max-width: 900px;
  height: 550px;
 margin:20px auto;
	
	
  background: #fff;
}

.form {
  position: relative;
	width: 100%;
  max-width: 640px;
  height: 100%;
  transition: -webkit-transform 1.2s ease-in-out;
  transition: transform 1.2s ease-in-out;
  transition: transform 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
  padding: 50px 30px 0;
}

.sub-cont {
  overflow: hidden;
  position: absolute;
  left: 640px;
  top: 0;
  width: 900px;
  height: 100%;
  padding-left: 260px;
  background: #fff;
  transition: -webkit-transform 1.2s ease-in-out;
  transition: transform 1.2s ease-in-out;
  transition: transform 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
}
.cont.s--signup .sub-cont {
  -webkit-transform: translate3d(-640px, 0, 0);
          transform: translate3d(-640px, 0, 0);
}
.head_border{
	display: inline-block;
	width: 100%;
	height: 1px;
	background-color: #ddd;
}
button {
  
	width: 100%;
	font-size: 14px !important;
	padding: 10px 15px;
    
	color: #fff;
	font-weight: bold;
    text-transform: uppercase !important;
}
.LoginBox{
	width: 100%;
	max-width: 350px;
	margin-top: 50px;
	text-align: center;
	float: right;
}
.LoginBox input{
	text-align: left;
    margin-bottom: 8px;
    font-size: 13px;
    height: auto;
    display: inline-block;
    width: 100%;
    padding: 8px 15px;
    border: 1px solid #ededed;
    border-radius: 0px;
}
.img {
  overflow: hidden;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  width: 260px;
  height: 100%;
  padding-top: 360px;
}
.img:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 900px;
  height: 100%;
  background-image: url("../Images/loginbg.jpg");
  background-size: cover;
  transition: -webkit-transform 1.2s ease-in-out;
  transition: transform 1.2s ease-in-out;
  transition: transform 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
}
.img:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.cont.s--signup .img:before {
  -webkit-transform: translate3d(640px, 0, 0);
          transform: translate3d(640px, 0, 0);
}
.img__text {
  z-index: 2;
  position: absolute;
  left: 0;
  top: 50px;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  color: #fff;
  transition: -webkit-transform 1.2s ease-in-out;
  transition: transform 1.2s ease-in-out;
  transition: transform 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
}
.img__text h2 {
  margin-bottom: 10px;
  font-weight: normal;
}
.img__text p {
  font-size: 14px;
  line-height: 1.5;
}
.cont.s--signup .img__text.m--up {
  -webkit-transform: translateX(520px);
          transform: translateX(520px);
}
.img__text.m--in {
  -webkit-transform: translateX(-520px);
          transform: translateX(-520px);
}
.cont.s--signup .img__text.m--in {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.img__btn {
  overflow: hidden;
  z-index: 2;
  position: relative;
  width: 100px;
  height: 36px;
  margin: 0 auto;
  background: transparent;
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  cursor: pointer;
}
.img__btn:after {
  content: '';
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 30px;
}
.img__btn span {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: -webkit-transform 1.2s;
  transition: transform 1.2s;
  transition: transform 1.2s, -webkit-transform 1.2s;
}
.img__btn span.m--in {
  -webkit-transform: translateY(-72px);
          transform: translateY(-72px);
}
.cont.s--signup .img__btn span.m--in {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.cont.s--signup .img__btn span.m--up {
  -webkit-transform: translateY(72px);
          transform: translateY(72px);
}

h2 {
  width: 100%;
  font-size: 26px;
  text-align: center;
}

label {
  display: block;
  width: 260px;
  margin: 0px auto 0;
  
}
label span {
  font-size: 12px;
  color: #cfcfcf;
  text-transform: uppercase;
}

input {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding-bottom: 5px;
  font-size: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  text-align: center;
}

.forgot-pass {
  margin-top: 15px;
  text-align: center;
  font-size: 12px;
  color: #cfcfcf;
}

.submit {
  margin-top: 40px;
  margin-bottom: 20px;
  background: #d4af7a;
  text-transform: uppercase;
}

.fb-btn {
  border: 2px solid #d3dae9;
  color: #8fa1c7;
}
.fb-btn span {
  font-weight: bold;
  color: #455a81;
}

.sign-in {
  transition-timing-function: ease-out;
}
.cont.s--signup .sign-in {
  transition-timing-function: ease-in-out;
  transition-duration: 1.2s;
  -webkit-transform: translate3d(640px, 0, 0);
          transform: translate3d(640px, 0, 0);
}

.sign-up {
  -webkit-transform: translate3d(-900px, 0, 0);
          transform: translate3d(-900px, 0, 0);
}
.cont.s--signup .sign-up {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.icon-link {
  position: absolute;
  left: 5px;
  bottom: 5px;
  width: 32px;
}
.icon-link img {
  width: 100%;
  vertical-align: top;
}
.icon-link--twitter {
  left: auto;
  right: 5px;
}
@media (min-width: 280px) and (max-width: 575px) {
	
	.login_img{
		display: none !important;
	}
}

@media (min-width: 576px) and (max-width: 767px) {
	.login_img{
		display: none !important;
	}
}*/
