/**
 * Simple Authentication Styles - Clean & Minimal
 */

/* Reset and Base */
body {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
	background: #f5f5f5;
	min-height: 100vh;
}

/* Page Layout */
.full-page-wrapper {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: #f5f5f5;
}

.login-wrap {
	width: 100%;
	max-width: 400px;
}

.login-content {
	background: white;
	padding: 40px;
	border-radius: 4px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Logo */
.login-logo {
	text-align: center;
	margin-bottom: 30px;
}

.login-logo img {
	max-height: 80px;
}

/* Forms */
.login-form {
	padding: 0;
}

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

/* Labels */
label {
	display: block;
	margin-bottom: 5px;
	color: #333;
	font-size: 14px;
	font-weight: normal;
}

/* Inputs */
.form-control,
.au-input,
.au-input--full,
input[type="email"],
input[type="password"],
input[type="text"],
input[type="tel"] {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	box-sizing: border-box;
	background: white;
}

.form-control:focus,
.au-input:focus,
input:focus {
	outline: none;
	border-color: #666;
}

/* Checkbox */
.login-checkbox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.login-checkbox label {
	margin: 0;
	display: flex;
	align-items: center;
	font-size: 13px;
	cursor: pointer;
}

.login-checkbox input[type="checkbox"] {
	width: auto;
	margin-right: 8px;
}

.login-checkbox a {
	color: #e74c3c;
	text-decoration: none;
	font-size: 13px;
}

.login-checkbox a:hover {
	text-decoration: underline;
}

/* Buttons */
.au-btn,
.au-btn--block,
.au-btn--green,
.btn,
button[type="submit"] {
	width: 100%;
	padding: 12px;
	background: #333;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	text-transform: uppercase;
	cursor: pointer;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
}

.au-btn:hover,
.btn:hover,
button:hover {
	background: #555;
}

/* Links */
.register-link {
	text-align: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.register-link p {
	margin: 5px 0;
	font-size: 13px;
	color: #666;
}

.register-link a {
	color: #e74c3c;
	text-decoration: none;
}

.register-link a:hover {
	text-decoration: underline;
}

/* Alerts */
.alert {
	padding: 12px;
	margin-bottom: 20px;
	border-radius: 4px;
	font-size: 14px;
}

.alert-danger {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

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

/* Success Message */
.registration-success {
	text-align: center;
	padding: 20px;
	font-size: 16px;
	color: #333;
}

/* Utilities */
.hide {
	display: none !important;
}

.m-b-20 {
	margin-bottom: 20px;
}

/* Readonly inputs */
input[readonly] {
	background: #f5f5f5;
	color: #666;
}

/* Password Strength */
.password-strength {
	margin-top: 5px;
	font-size: 12px;
	padding: 4px 8px;
	border-radius: 3px;
	font-weight: normal;
}

.password-strength.weak {
	background: #f8d7da;
	color: #721c24;
}

.password-strength.medium {
	background: #fff3cd;
	color: #856404;
}

.password-strength.strong {
	background: #d4edda;
	color: #155724;
}

/* Privacy Policy Section */
.privacy-policy-section {
	text-align: center;
	margin: 15px 0;
	padding: 15px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.privacy-policy-section p {
	margin: 0;
	font-size: 13px;
	color: #666;
}

.privacy-policy-section a {
	color: #e74c3c;
	text-decoration: none;
}

.privacy-policy-section a:hover {
	text-decoration: underline;
}

/* Mobile */
@media (max-width: 480px) {
	.full-page-wrapper {
		padding: 10px;
	}
	
	.login-content {
		padding: 30px 20px;
	}
	
	.login-logo img {
		max-height: 60px;
	}
	
	.privacy-policy-section {
		margin: 10px 0;
		padding: 10px 0;
	}
}