#mainLayoutPane {
  background-color: #1f2d40;
}

#mainDiv {
  background-color: #1f2d40;
}

.CodeMirror { 
  text-align: left; 
  height: auto !important;
}

.center {
  text-align: center;
}

body{
	margin: 0;
	padding: 0;
	background: #fff;
	color: #fff;
	font-family: Arial;
	font-size: 12px;


}

.body{
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	width: auto;
	height: auto;
	background-size: cover;
	-webkit-filter: blur(7px);
	z-index: 0;
}


.login{
	position: absolute;
    margin:0;
	top: calc(50% - 150px);
	left: calc(50% - 140px);
	height: auto;
	width: 250px;
    align-items: center;
    justify-content: center;
	padding: 10px;
	z-index: 2;
}

.login input[type=text]{
	width: 250px;
	height: 30px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 2px;
	color: #fff;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
}

.login input[type=password]{
	width: 250px;
	height: 30px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 2px;
	color: #fff;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
	margin-top: 10px;
}

.login input[type=submit]{
	width: 250px;
	height: 35px;
	background: #fff;
	border: 1px solid #fff;
	cursor: pointer;
	border-radius: 2px;
	color: #a18d6c;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 6px;
	margin-top: 10px;
}

.login input[type=submit]:hover{
	opacity: 0.8;
}

.login input[type=submit]:active{
	opacity: 0.6;
}

.login input[type=text]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}

.login input[type=password]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}

.login input[type=submit]:focus{
	outline: none;
}

::-webkit-input-placeholder{
   color: rgba(255,255,255,0.6);
}

::-moz-input-placeholder{
   color: rgba(255,255,255,0.6);
}

.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* tüm ekran boyu */
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2); /* arka plan örneği */
    padding: 1rem;
}

/* ---- Mobil düzen: 768px ve altı ---- */
@media (max-width: 768px) {

  /* Login kutusunu biraz büyüt */
  .login {
    width: 300px;          /* normalde 250px idi */
    top: calc(50% - 180px); /* biraz daha aşağı kaydır */
    left: calc(50% - 150px);
    padding: 15px;
  }

  /* Input alanlarını büyüt */
  .login input[type="text"],
  .login input[type="password"],
  .login .ui-inputtext {
    height: 40px;          /* normalde 30px idi */
    font-size: 18px;       /* daha büyük yazı */
  }

  /* Butonu büyüt */
  .login input[type="submit"] {
    height: 45px;
    font-size: 18px;
  }

  /* Uyarı ve açıklama yazılarını büyüt */
  .login p {
    font-size: 16px;
    line-height: 1.4;
  }

  /* Logoları biraz daha büyük göster */
  .login img {
    max-width: 110%;       /* %100 yerine %110 */
    height: auto;
  }
}


