/**
 * Login Page Styles
 *
 * @package ShopAdminDashboard
 */

/* Reset and Base Styles */
.sad-login-page {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Container */
.sad-login-container {
	width: 100%;
	max-width: 400px;
	padding: 20px;
}

/* Login Box */
.sad-login-box {
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	padding: 40px;
}

/* Title */
.sad-login-title {
	margin: 0 0 30px;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	color: #333333;
}

/* Messages */
.sad-message {
	padding: 12px 16px;
	margin-bottom: 20px;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.5;
}

.sad-message-success {
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
}

.sad-message-error {
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
}

.sad-message-info {
	background-color: #d1ecf1;
	border: 1px solid #bee5eb;
	color: #0c5460;
}

/* Form */
.sad-login-form {
	margin: 0;
}

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

.sad-form-group:last-child {
	margin-bottom: 0;
	margin-top: 30px;
}

.sad-form-group label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #333333;
}

.sad-form-input {
	width: 100%;
	padding: 12px 16px;
	font-size: 16px;
	line-height: 1.5;
	color: #333333;
	background-color: #ffffff;
	border: 1px solid #d1d5db;
	border-radius: 4px;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	box-sizing: border-box;
}

.sad-form-input:focus {
	outline: 0;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Button */
.sad-btn {
	display: block;
	width: 100%;
	padding: 12px 24px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	text-align: center;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	box-sizing: border-box;
}

.sad-btn-primary {
	color: #ffffff;
	background-color: #667eea;
}

.sad-btn-primary:hover {
	background-color: #5568d3;
	box-shadow: 0 4px 6px rgba(102, 126, 234, 0.3);
}

.sad-btn-primary:active {
	background-color: #4c5bc9;
}

/* Footer */
.sad-login-footer {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #e5e7eb;
}

.sad-login-notice {
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	color: #6b7280;
	text-align: center;
}

.sad-login-notice + .sad-login-notice {
	margin-top: 12px;
}

.sad-login-notice a {
	color: #9ca3af;
}

/* Login Page Footer */
.sad-login-page-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: transparent;
	text-align: center;
	padding: 20px;
}

.sad-login-page-footer .sad-copyright {
	margin: 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 480px) {
	.sad-login-box {
		padding: 30px 20px;
	}

	.sad-login-title {
		font-size: 20px;
		margin-bottom: 24px;
	}

	.sad-form-input,
	.sad-btn {
		font-size: 14px;
	}
}
