body {
	color: #272727;
	height: 100vh;
	font-family: 'Altone';
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
	-webkit-text-fill-color: #11B682;
}

.modal-backdrop {
    background-color: #CECECE !important; 
}

@media (min-width: 576px) {
    .modal-dialog-centered {
        min-height: calc(80% - 3.5rem) !important;
    }
}

@media (min-width: 992px) {
    .modal-mt {
        max-width: 600px;
    }
}

.custom-modal-content{
	border-radius: 10px;
	background: #FFF;
	box-shadow: 0px 4px 45.6px 0px rgba(132, 132, 132, 0.44);
}

.text-mt-green {
   color: #11B682 !important;
}

a{
	color: inherit;
}

.p-7 {
	padding-top: 7rem;
	padding-right: 7rem;
	padding-left: 7rem;
	padding-bottom: 7rem;
}

.mt-gap {
	gap: 2rem;
}

.mt-input {
	background: #FFF;
}

.mt-input:focus {
	background: #FFF;
	color: #11B682;
	font-weight: 500;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
}

.mt-input-div {
	border-radius: 5px;
	border: 1.235px solid #11B682;
	background: #FFF;
}

/* Sınıf eklenince değişecek stil */
.mt-input-div.focused {
	border-left: 5px solid #11B682;
}

.fs-7 {
	font-size: 0.7rem;
}   

.mt-p-form-control {
	padding: 0rem .75rem;
}

.bg-mt-login {
	background-image: url('img/login_background.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.mt-green-button {
	background: #11B682;
	color: #FFF;
	border: none;
	padding: 0.5rem 3rem;
	font-weight: 500;
	text-align: center;
}

span#id_pwd_show_hide_pswd {
    position: absolute;
    right: 20;
    bottom: 12;
}

.scFormObjectOddPwdBox.sc-ui-100perc-span-input {
    position: relative;
}

.mt-green-button {
    position: relative;
    overflow: hidden;
}

.mt-green-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-45deg);
}

.mt-green-button:hover::after {
    left: 100%;
    transition: left 0.5s ease-in-out;
}

.text-mt-gray{
	color: #BEBEBE;
}

/* Loading Ekranı */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Saydam arka plan */
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Bootstrap Spinner Rengini Özelleştirme */
.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 5px;
    color: #11B682 !important;
}

@media (max-width: 768px) {
	
	.p-7 {
        padding-top: 2rem;
        padding-right: 2rem;
        padding-bottom: 2rem;
        padding-left: 2rem;
    }
	
	/* Yeşil katmanı ekliyoruz */
	.bg-mt-login::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #edfcf8;
		opacity: 0.9; /* Opaklığı ayarlıyoruz */
		/*filter: blur(5px);  Blur efekti uyguluyoruz */
		z-index: 1; /* Katmanın arka plan görüntüsünün üzerinde olmasını sağlıyoruz */
	}

	/* İçeriklerin katmanın üzerinde görünmesi için */
	.bg-mt-login > * {
		position: relative;
		z-index: 2;
	}
	
}

@media (max-width: 425px) {
	
	.p-7 {
        padding-top: 1rem;
        padding-right: 1rem;
        padding-bottom: 1rem;
        padding-left: 1rem;
    }
	
}