.auth-mobile {
	max-width: 390px;
	margin: auto;
	padding: 24px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	text-align: center;
}

.auth-illustration img {
	width: 180px;
	margin: 20px auto;
}

.auth-title {
	font-size: 28px;
	font-weight: 700;
	color: #2F80ED;     /* BIRU */
	margin-bottom: 6px;
}

.auth-subtitle {
	font-size: 14px;
	color: #8A8A8A;
	margin-bottom: 24px;
}

.auth-field {
	position: relative;
	margin-bottom: 14px;
}

.auth-field input {
	width: 100%;
	padding: 16px 44px 16px 16px;
	border-radius: 14px;
	border: none;
	background: #F1F1F1;
	font-size: 14px;
}

.auth-field i {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
}

.auth-options {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	margin: 10px 0 20px;
}

.auth-options label {
	display: flex;
	gap: 6px;
	align-items: center;
}

.auth-options .forgot {
	color: #EB5757;
	text-decoration: none;
}

.auth-divider {
	display: flex;
	align-items: center;
	margin: 20px 0;
	color: #999;
	font-size: 12px;
}

.auth-divider::before, .auth-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #E0E0E0;
}

.auth-divider span {
	padding: 0 10px;
}

.auth-social {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 24px;
}

.auth-social button {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	font-weight: 700;
	cursor: pointer;
}

.google {
	background: #fff;
	border: 1px solid #ddd;
}

.facebook {
	background: #1877F2;
	color: #fff;
}

.x {
	background: #000;
	color: #fff;
}

.auth-btn {
	width: 100%;
	height: 54px;
	background: #1877F2;
	color: #fff;
	border-radius: 18px;
	font-size: 16px;
	font-weight: 600;
	border: none;
}

.auth-footer {
	margin-top: 20px;
	font-size: 13px;
}

.auth-footer a {
	color: #EB5757;
	font-weight: 600;
	text-decoration: none;
}