/**
* VirgoCore CSS dosyası
* /css/login.css
* @author Mustafa Odabaşı
* @copyright Virgo İnternet Hiz. Ltd. Şti.
* @link https://www.virgo.com.tr
*/

.login-container {
  	background: rgba(255, 255, 255, 0.95);
  	backdrop-filter: blur(10px);
  	border-radius: 15px;
  	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  	padding: 40px;
  	width: 100%;
  	max-width: 450px;
  	margin: 0 auto;
}

.login-header {
 	text-align: center;
  	margin-bottom: 30px;
}

.login-header h2 {
  	color: #333;
  	font-weight: 600;
  	margin-bottom: 10px;
}

.login-header p {
  	color: #666;
  	font-size: 14px;
}

.login-logo {
	max-width: 250px;
	max-height: 150px;
	width: auto;
	height: auto;
	display: block;
	margin: 0 auto;
	object-fit: contain;
}

/* Form Controls - Login Body Specific */
.form-floating {
	margin-bottom: 20px;
}

.form-control {
	border: 2px solid #e1e5e9;
	border-radius: 10px;
	padding: 30px 15px 12px 15px;
	font-size: 14px;
	transition: all 0.3s ease;
	height: 58px;
}

.form-control:focus {
	border-color: #667eea;
	box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-floating label {
	color: #666;
	font-weight: 500;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
	color: #667eea;
}

/* Password Toggle Button - New Approach */
.password-toggle {
	background: transparent;
	border: none;
	color: #666;
	padding: 8px;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.password-toggle:hover {
	color: #667eea;
	background-color: rgba(102, 126, 234, 0.1);
}

.password-toggle:focus {
	box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.25);
	outline: none;
}

/* Login Button */
.btn-login {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	border-radius: 10px;
	padding: 12px;
	font-weight: 600;
	font-size: 16px;
	color: white;
	width: 100%;
	transition: all 0.3s ease;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-login:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
	color: white;
}

.btn-login:disabled {
	opacity: 0.7;
	transform: none;
}

.btn-login:focus {
	box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.5);
}

/* Loading States */
.loading-spinner {
	display: none;
}

.login-text {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Validation */
.form-control.is-invalid {
	border-color: #dc3545;
}

/* Responsive */
@media (max-width: 576px) {
	.login-container {
		padding: 30px 20px;
		margin: 15px;
		max-width: none;
	}
	
	.login-header img {
		max-width: 250px;
	}
	
	.login-header h2 {
		font-size: 1.5rem;
	}
}
