/*
 * © Atia Hegazy — atiaeno.com
 * SugarTube Custom Login Page Styles
 */

/* Body background */
body.login {
	background: #f9f9f9;
	font-family: 'Inter', sans-serif;
}

/* Login form container */
#login {
	width: 360px;
	padding: 30px 0;
}

/* Logo */
.login h1 a {
	background-image: url('../images/2.png');
	background-size: contain;
	width: 180px;
	height: 60px;
	margin-bottom: 20px;
}

/* Form box */
.login form {
	background: #ffffff;
	border: 1px solid #e4e4e7;
	border-radius: 4px;
	padding: 30px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Input fields */
.login form .input,
.login input[type="text"] {
	background: #eeeeee;
	border: 1px solid #e4e4e7;
	border-radius: 4px;
	padding: 10px 12px;
	font-size: 13px;
	color: #1a1c1c;
	transition: border-color 0.15s ease;
}

.login form .input:focus,
.login input[type="text"]:focus {
	border-color: #be0003;
	box-shadow: 0 0 0 2px rgba(190, 0, 3, 0.1);
	outline: none;
}

/* Labels */
.login label {
	font-size: 12px;
	font-weight: 600;
	color: #1a1c1c;
	margin-bottom: 6px;
}

/* Remember me */
.login .forgetmenot label {
    font-size: 12px;
    font-weight: 400;
    color: #71717a;
    margin-top: 35px;
    margin-bottom: 13px;
}

/* Submit button */
.login .button-primary {
	background: #be0003;
	border: none;
	border-radius: 4px;
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
	padding: 10px 20px;
	letter-spacing: 0.3px;
	transition: all 0.15s ease;
	width: 100%;
	height: auto;
	line-height: 1.5;
}

.login .button-primary:hover {
	background: #e62117;
}

/* Links below form */
.login #nav a,
.login #backtoblog a {
	color: #71717a;
	font-size: 12px;
	transition: color 0.15s ease;
}

.login #nav a:hover,
.login #backtoblog a:hover {
	color: #be0003;
}

/* Password visibility toggle */
.login .button.wp-hide-pw {
	color: #71717a;
	border: none;
	background: transparent;
}

.login .button.wp-hide-pw:hover {
	color: #be0003;
}

/* Error/message boxes */
.login #login_error,
.login .message {
	border-radius: 4px;
	border-left: 3px solid #be0003;
	background: #fff5f5;
	color: #1a1c1c;
	font-size: 12px;
	padding: 12px;
}

.login .message {
	border-left-color: #4caf50;
	background: #f5fff5;
}

/* Language switcher */
.login #language-switcher {
	margin-top: 20px;
}

.login #language-switcher select {
	background: #ffffff;
	border: 1px solid #e4e4e7;
	border-radius: 4px;
	padding: 6px 10px;
	font-size: 12px;
}

/* Social Login Styles */
.sugartube-social-login {
	margin-top: 16px;
}

.social-login-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 16px 0;
	font-size: 11px;
	font-weight: 600;
	color: #71717a;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

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

.social-login-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 10px 16px;
	border: 1px solid #e4e4e7;
	border-radius: 4px;
	background: #ffffff;
	color: #1a1c1c;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s ease;
}

.social-login-btn:hover {
	background: #e8e8e8;
	border-color: #71717a;
}

.gmail-btn {
	background: #ffffff;
	color: #1a1c1c;
}

.gmail-btn:hover {
	background: #f8f9fa;
	border-color: #dadce0;
}
