body {
	background: url('../img/apartman.jpg') no-repeat center center fixed;
	background-size: cover;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
}
.login-container {
	background: rgba(255, 255, 255, 0.95);
	padding: 35px;
	border-radius: 12px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
	width: 100%;
	max-width: 420px;
	position: relative;
	z-index: 10;
	animation: fadeIn 0.8s ease-in-out;
}
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(-20px); }
	to { opacity: 1; transform: translateY(0); }
}
.brand-logo {
	text-align: center;
	margin-bottom: 25px;
}
.brand-logo h2 {
	font-weight: bold;
	color: #333;
}
.form-control {
	border-radius: 8px;
	padding: 10px;
	font-size: 16px;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
.btn-primary {
	background: #5567c9;
	border: none;
	padding: 12px;
	font-size: 16px;
	border-radius: 8px;
	transition: all 0.3s;
}
.btn-primary:hover {
	background: #4457b8;
	transform: scale(1.05);
}
		
/* Butonları Yan Yana ve Kesik Köşeler ile Şekillendir */
.btn-group-custom {
    display: flex;
    justify-content: center;
    gap: 0.5px; /* Butonlar arasındaki boşluk minimize edildi */
    margin-top: 15px;
}

.btn-group-custom a {
    flex: 1;
    padding: 12px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #5567c9;
    background: white;
    color: #5567c9;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    position: relative;
}

/* Kayıt Ol Butonu - Sağ Alt Köşe Kesik */
.btn-group-custom a:first-child {
    clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
    border-right: none; /* Kesik kenarda çift çizgi oluşmasını önlemek için */
}

/* Şifremi Unuttum Butonu - Sol Üst Köşe Kesik */
.btn-group-custom a:last-child {
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
    border-left: none; /* Kesik kenarda çift çizgi oluşmasını önlemek için */
}

/* Hover Efekti */
.btn-group-custom a:hover {
    background: #5567c9;
    color: white;
    transform: scale(1.16);
}

.spinner-border {
    vertical-align: middle;
    margin-right: 5px;
}
form p {
  color: #555;
}
form p a {
  color: #dc3545;
  text-decoration: underline;
}
.dsp_none {display:none !important;}