		* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Rajdhani', sans-serif;
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.login-container {
	width: 100%;
	max-width: 450px;
	padding: 20px;
}

.login-card {
	background: #ffffff;
	border-radius: 15px;
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.login-header {
	text-align: center;
	margin-bottom: 30px;
}

.login-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #FF6600 0%, #FF4400 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 40px;
	color: white;
}

.login-title {
	font-size: 32px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 10px;
}

.login-subtitle {
	font-size: 16px;
	color: #666;
}

.form-label {
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}

.form-control {
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 12px 15px;
	font-size: 16px;
	transition: all 0.3s ease;
}

.form-control:focus {
	border-color: #FF6600;
	box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.15);
}

.btn-login {
	background: linear-gradient(135deg, #FF6600 0%, #FF4400 100%);
	border: none;
	border-radius: 8px;
	padding: 14px;
	font-size: 18px;
	font-weight: 700;
	color: white;
	width: 100%;
	margin-top: 20px;
	transition: all 0.3s ease;
}

.btn-login:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
}

.alert {
	border-radius: 8px;
	margin-bottom: 20px;
}

.password-toggle {
	position: absolute;
	right: 15px;
	top: 70%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #666;
	user-select: none;
}

.form-group {
	position: relative;
	margin-bottom: 20px;
}

/* PWA Install Button Styles */
#install-container {
	margin-top: 20px;
	text-align: center;
}

#install-button {
	width: 100%;
	border-radius: 8px;
	padding: 12px;
	font-weight: 600;
	background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
	border: 2px solid #4CAF50;
	color: white;
	transition: all 0.3s ease;
}

#install-button:hover {
	background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

/* iOS Instructions Styles */
#ios-instructions {
	margin-top: 20px;
	padding: 15px;
	background: #f0f8ff;
	border-radius: 8px;
	border: 2px solid #FF6600;
	text-align: left;
}

#ios-instructions h6 {
	color: #FF6600;
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 16px;
}

#ios-instructions ol {
	margin: 0;
	padding-left: 20px;
	font-size: 14px;
	line-height: 1.8;
}

#ios-instructions li {
	margin-bottom: 8px;
}

#ios-instructions button {
	margin-top: 10px;
	padding: 8px 16px;
	background: #FF6600;
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
}

#ios-instructions button:hover {
	background: #FF4400;
	transform: translateY(-1px);
}
