/* ==========================================================================
   Social Login Buttons — ChatGPT-inspired style
   ========================================================================== */

.madplan-social-login {
	margin-bottom: 8px;
}

/* Individual button */
.madplan-social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	padding: 12px 16px;
	margin-bottom: 12px;
	border: 1.5px solid #e0e0e0;
	border-radius: 12px;
	background: #fff;
	color: #1d1d1f;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
	box-sizing: border-box;
	line-height: 1.4;
}

.madplan-social-btn:hover {
	background: #f7f7f8;
	border-color: #ccc;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
	text-decoration: none;
	color: #1d1d1f;
}

.madplan-social-btn:active {
	background: #efefef;
	transform: scale(0.995);
}

/* Icon container */
.madplan-social-btn__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.madplan-social-btn__icon svg {
	display: block;
}

/* Label */
.madplan-social-btn__label {
	flex-shrink: 0;
}

/* Divider: ——— ELLER ——— */
.madplan-social-divider {
	display: flex;
	align-items: center;
	margin: 20px 0 16px;
	gap: 12px;
}

.madplan-social-divider::before,
.madplan-social-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: #e0e0e0;
}

.madplan-social-divider span {
	font-size: 12px;
	font-weight: 500;
	color: #888;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

/* Mobile adjustments */
@media (max-width: 480px) {
	.madplan-social-btn {
		padding: 11px 14px;
		font-size: 14px;
		border-radius: 10px;
	}
}
