/* Mobile Card Container */
.mobile-card {
	background: #fff;
	padding: 1.25rem;
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Labels */
.form-label {
	display: block;
	margin: 0.75rem 0 0.35rem;
	font-size: 0.9rem;
	color: #555;
	font-weight: 600;
}

/* Group with icon */
.form-group {
	position: relative;
	margin-bottom: 1rem;
}
.form-icon-left {
	position: absolute;
	top: 50%;
	left: 12px;
	transform: translateY(-50%);
	fill: #888;
	pointer-events: none;
}
.form-input {
	width: 100%;
	padding: 0.75rem 0.75rem 0.75rem 2.5rem;
	border: 1px solid #ddd;
	border-radius: 12px;
	font-size: 1rem;
	background: #f8f8f8;
}
.form-input:focus {
	outline: none;
	border-color: #b9822f; /* Trail accent */
	background: #fff;
	box-shadow: 0 0 0 3px rgba(185, 130, 47, 0.25);
}

/* Remember + Forgot password */
.form-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	margin: 0.75rem 0;
}
.checkbox {
	display: flex;
	align-items: center;
	gap: 6px;
}
.checkbox input {
	accent-color: #b9822f;
}
.form-link {
	color: #b9822f;
	text-decoration: none;
}
.form-link:hover {
	text-decoration: underline;
}

/* Messages */
.msg {
	font-size: 0.85rem;
	margin: 0.5rem 0;
}
.msg.error {
	color: #c0392b;
}
.msg.success {
	color: #27ae60;
}

/* Buttons */
.btn {
	display: inline-block;
	width: 100%;
	padding: 0.75rem;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition: background 0.2s ease;
}
.btn-primary {
	background: #b9822f;
	color: #fff;
}
.btn-primary:hover {
	background: #a36f26;
}

/* Register link */
.register-link {
	text-align: center;
	margin-top: 1rem;
	font-size: 0.9rem;
	color: #555;
}
.register-link a {
	color: #b9822f;
	text-decoration: none;
}
.register-link a:hover {
	text-decoration: underline;
}
