/* ============================
   Get3DModels Login Page Style
   ============================ */

/* Background overlay like modal */
body.login {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Centered white card */
#login {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    animation: g3dm-login-slide 0.3s ease-out;
    width: 380px;
}

/* Animation */
@keyframes g3dm-login-slide {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}



/* Input Field Style (matching modal) */
.login .input, 
input[type="text"],
input[type="password"] {
    border: 1px solid #ddd !important;
    padding: 12px !important;
    font-size: 16px !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    background: #fafafa !important;
}

/* Input Hover */
.login .input:focus {
    border-color: #C83B3B !important;
    box-shadow: 0 0 4px rgba(200, 59, 59, 0.3) !important;
}

/* Primary Red Gradient Login Button */
.wp-core-ui .button-primary {
    background: linear-gradient(135deg, #AA332A 0%, #C83B3B 100%) !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 6px 10px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #fff !important;
    text-shadow: none !important;
    transition: 0.3s !important;
	display: block;
	width: 100% !important;
	box-sizing: border-box !important;
	margin-top: 10px !important;
}

/* Button Hover */
.wp-core-ui .button-primary:hover {
    background: linear-gradient(135deg, #C83B3B 0%, #E04A45 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.3);
}

/* Footer Links */
#nav a, #backtoblog a {
    color: #AA332A !important;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

#nav a:hover, #backtoblog a:hover {
    color: #C83B3B !important;
}

/* Hide WordPress Branding Gap */
.login h1 {
    padding-bottom: 10px;
}

/* Error Message Style */
.login .message,
.login .notice,
.login #login_error {
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
}

/* Success (message) */
.login .message {
    background-color: #d4edda;
    border-left: 4px solid #155724;
    color: #155724;
}

/* Error */
.login #login_error {
    background-color: #f8d7da;
    border-left: 4px solid #721c24;
    color: #721c24;
}

.login form{
	box-shadow: 0;
	border: 0;
	padding: 0;
}

.googlesitekit-sign-in-with-google__frontend-output-button{
	display: flex;
	justify-content: center;
	max-width: 100% !important;
}

.login .button.wp-hide-pw{
	top: 3px !important;
	color: #515151 !important;
}