:root {
    --background: #f3f3f3;
    --text: #001011;
    --accent: #0096c7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	font-family: 'Default Regular', sans-serif;
    background-color: #ffffff;
    background-size: 30px 30px;
    background-position: -5px -5px;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container{
	display: flex;
	width: 100%;
	height: 100%;
}

.LeftPart{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 700px;
	background: url("../FrontPage/bgim.jpg") no-repeat;
	background-size: cover;
    background-clip: border-box;
}

.RightPart{
	display: flex;
	flex-grow: 1;
}

.LogoKanan{
	width: 250px;
	height: auto;
}

input:focus::placeholder {
  color: transparent;
  outline: none;
}


::-webkit-input-placeholder { 
    color:    #ccc;
}
:-moz-placeholder { 
   color:    #ccc;
   opacity:  1;
}
::-moz-placeholder { 
   color:    #ccc;
   opacity:  1;
}
:-ms-input-placeholder { 
   color:    #ccc;
}
::-ms-input-placeholder { 
   color:    #ccc;
}
::placeholder { 
   color:    #ccc;
}

.login-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    margin: 3.5% auto;
}

.login-form {
    display: flex;
    flex-direction: column;
}

.login-form h1 {
    margin-bottom: 10px;
    color: var(--text)
}

.login-form p {
    margin-bottom: 20px;
    color: #777;
}

.input-group {
    margin-bottom: 20px;
}

.input-group-password {
    margin-bottom: 20px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.eye-icons {
    position: absolute;
    right: 10px;
    cursor: pointer;
    transition: color 0.3s ease;

}

.input-group input, .input-group-password input {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #999;
    width: 100%;
    font-size: 16px;
    transition: border-color 0.3s ease;
	font-family: 'Default Medium', sans-serif;
}

.input-group input:focus, .input-group-password input:focus {
   /* border-color: var(--accent);*/
    outline: none;
}

.button-custom-login{
	 background-color: #b80c0c;
}

.button-custom-back{
	background-color: #ff7e00;
}

.button-custom {
    padding: 15px;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
	font-family: 'Default Medium', sans-serif;
	margin-bottom: 15px;
}

.button-custom:hover {
    background-color: #870707;
}

.bottom-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    color: #777;
	font: 500 15px/7px "Default Light", Helvetica, sans-serif;
}

.bottom-text p {
    margin-bottom: 10px;
}

.bottom-text a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;

}

.bottom-text a:hover {
    color: #0056b3;
}

/* captcha */

.captcha {
    width: 100%;
    margin: 0px 0 20px 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    border-radius: 8px;
    border: #fff 1px solid;
}

.captcha img {
    width: 40%;
    height: 30px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
	padding-right: 25px;
    /*object-fit: cover;*/
}

.input-group-captcha {
    width: 50%;
    height: 100%;
}
.input-group-captcha input {
    padding: 5px;
    border: 1px solid #999;
    width: 110%;
    height: 49px;
    font-size: 16px;
	font-family: 'Default Medium', sans-serif;
    /*border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;*/
	border-radius: 8px;
    transition: border-color 0.3s ease;
	 outline: none;
}

.input-group-captcha input:focus {
    /*border-color: var(--accent);*/
    outline: none;
}

.TtlRight{
	font: 700 55px/55px "Default Bold", Helvetica, sans-serif;
	color: #ececec;
	text-shadow: 3px 3px 20px #ff99cc, -2px 1px 30px #ff99cc;
}

.TtlRight2{
	font: 700 37px/37px "Default Bold", Helvetica, sans-serif;
	color: #ececec;
	text-shadow: 3px 3px 20px #ff99cc, -2px 1px 30px #ff99cc;
	text-align: right;
}

.TtlRightPos{
	margin-bottom: 375px;
}

.borders{
	border: solid 1px #FF0000;
}

.ErrorTitle{
	font: 700 17px/17px "Default Bold", Helvetica, sans-serif;
	color:#de0606;
}

.ErrorTxt{
	font: 700 15px/17px "Default Light", Helvetica, sans-serif;
	color:#3a3a3a;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .login-container {
        width: 100%;
        border-radius: 0;
    }
	
	.LeftPart{
		display: none;
	}
		
}