/* signin.css */

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: #333;
}

.signin-section {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.card {
	border: none;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.card-body {
	padding: 40px;
}

h3 {
	font-size: 24px;
	margin-bottom: 20px;
	font-weight: 700;
}

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

.form-control {
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	transition: border-color 0.3s ease;
}

.form-control.error {
	border-color: #dc3545;
}

.error-message {
	color: #dc3545;
	font-size: 14px;
	margin-top: 5px;
	position: absolute;
	bottom: -20px;
	left: 0;
}

.btn-primary {
	background-color: #007bff;
	border: none;
	padding: 12px 30px;
	color: #fff;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease, opacity 0.3s ease;
}

.btn-primary:hover {
	background-color: #0056b3;
}

.btn-primary:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

@media (max-width: 768px) {
	/* Reduce signin section padding to minimize space between header and form */
	.signin-section {
		padding: 20px 0 !important;
	}

	.card-body {
		padding: 20px !important;
	}

	/* Further reduce header size on mobile - signin specific overrides */
	.breadcrumb-area {
		padding: 25px 0 !important;
		margin-bottom: 20px !important;
	}

	/* Make logo container much smaller */
	.logo-container {
		top: -20px !important;
		padding: 8px !important;
	}

	.logo-container img {
		width: 80px !important;
	}

	/* Minimize navbar padding */
	.navbar {
		padding: 5px 0 !important;
	}

	/* Reduce container padding in header */
	.breadcrumb-area .container {
		padding-top: 10px !important;
	}

	.breadcrumb-area h2 {
		font-size: 1.3rem !important;
		margin-bottom: 5px !important;
	}

	/* Ensure form elements are mobile-friendly */
	.form-control {
		font-size: 16px; /* Prevent zoom on iOS */
	}

	/* Make buttons full width on mobile */
	.btn {
		width: 100%;
		margin-bottom: 10px;
	}

	.btn-outline-primary {
		width: auto;
		display: inline-block;
	}

	/* Adjust card margins */
	.card {
		margin: 0 15px;
	}
}