/**
 * PinkAngel Social Login - Frontend Styles
 */

/* Main container with side-by-side layout */
.pasl-form-container {
	display: flex;
	gap: 40px;
	align-items: stretch;
}

/* Login form on the left */
.pasl-form-left {
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* Social login on the right */
.pasl-form-right {
	flex: 0 0 280px;
	padding-left: 40px;
	border-left: 1px solid #e0e0e0;
	display: flex;
	flex-direction: column;
}

.pasl-social-login-wrapper {
	margin: 0;
}

.pasl-social-title {
	font-size: 14px;
	color: #666;
	margin-bottom: 20px;
	text-align: center;
}

.pasl-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Social login buttons */
.pasl-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 0 16px;
	height: 48px;
	border: 1px solid #dadce0;
	border-radius: 6px;
	background: #fff;
	color: #3c4043 !important;
	font-size: 15px;
	font-weight: 500;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	text-decoration: none !important;
	cursor: pointer;
	transition: all 0.15s ease;
	box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.15), 0 1px 2px 0 rgba(60, 64, 67, 0.1);
	position: relative;
	overflow: hidden;
}

.pasl-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.04);
	opacity: 0;
	transition: opacity 0.15s ease;
}

.pasl-button:hover {
	background: #fff;
	border-color: #c6c6c6;
	box-shadow: 0 2px 4px 0 rgba(60, 64, 67, 0.2), 0 2px 3px 0 rgba(60, 64, 67, 0.15);
	transform: translateY(-1px);
}

.pasl-button:hover::before {
	opacity: 1;
}

.pasl-button:active {
	background: #f8f9fa;
	box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.15);
	transform: translateY(0);
}

.pasl-button i {
	font-size: 20px;
	position: relative;
	z-index: 1;
}

.pasl-button span {
	position: relative;
	z-index: 1;
}

/* Google button */
.pasl-button-google {
	border-color: #dadce0;
}

.pasl-button-google i {
	color: #4285f4;
}

.pasl-button-google:hover {
	border-color: #4285f4;
	background: #fff;
}

/* Facebook button */
.pasl-button-facebook {
	background: #1877f2;
	color: #fff !important;
	border-color: #1877f2;
}

.pasl-button-facebook::before {
	background: rgba(255, 255, 255, 0.1);
}

.pasl-button-facebook:hover {
	background: #1877f2;
	border-color: #1877f2;
	box-shadow: 0 2px 4px 0 rgba(24, 119, 242, 0.4), 0 2px 3px 0 rgba(24, 119, 242, 0.3);
}

.pasl-button-facebook:active {
	background: #166fe5;
}

.pasl-button-facebook i {
	color: #fff;
}

.pasl-error {
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
	padding: 12px 15px;
	border-radius: 4px;
	margin-bottom: 20px;
}

.pasl-error p {
	margin: 0;
}

/* Responsive - stack on mobile */
@media (max-width: 767px) {
	.pasl-form-container {
		flex-direction: column;
		gap: 30px;
	}

	.pasl-form-right {
		flex: 1;
		padding-left: 0;
		border-left: none;
		border-top: 1px solid #e0e0e0;
		padding-top: 30px;
	}

	.pasl-social-title {
		text-align: left;
	}
}

