/* Hide signin form inputs */
#user_pass {
    display: none !important;
}

#wp-submit {
    display: none !important;
}

.magic-login-submit-btn {
    margin-bottom: 1rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background-color: #000 !important;
    width: 100% !important;
    outline: 0 !important;
    border: none !important;
    padding: 0.5rem 0 !important;
}

/* Disable button when loading */
.magic-login-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.magic-login-submit-btn svg {
    width: 1rem;
    height: 1rem;
    fill: #fff;
}

.wp-hide-pw, .user-pass-wrap, .wp-login-lost-password {
    display: none !important;
}

.login form {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.login form .lostmenot {
    display: none !important;
}

.forgetmenot {
    display: none !important;
}

/* Magic login message styles */
#login_error {
    margin-bottom: 1rem;
}

#login_error.message {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

#login_error.message::before {
    content: "✓ ";
    font-weight: bold;
}

#user_login {
    font-size: 120% !important;
    outline: 0 !important;
}

#user_login:focus {
    border-color: transparent !important;
    box-shadow: 0 0 0 1px #000 !important;
}

label[for="user_login"] {
    display: none !important;
}

#nav {
    display: none !important;
}

.wp-login-register {
    display: none !important;
}

/* Social Login Styles */
.social-login-container {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.social-login-divider {
    text-align: center;
    position: relative;
    margin: 5rem 0 1.5rem 0;
    color: #666;
    font-size: 14px;
}

.social-login-divider span {
    margin-bottom: 1rem;
    position: relative;
    display: block;
    z-index: 2;
    width: 100%;
}

.social-login-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.social-login-btn:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.social-login-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.social-login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.social-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Google specific styles */
.google-login-btn {
    color: #333;
}

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

/* Facebook specific styles */
.facebook-login-btn {}

.facebook-login-btn:hover {
    background: #f0f2f5;
    border-color: #dadce0;
}

.facebook-login-btn .social-icon {
    fill: #1877f2;
}

/* LinkedIn specific styles */
.linkedin-login-btn {}

.linkedin-login-btn:hover {
    background: #f3f6f8;
    border-color: #dadce0;
}

.linkedin-login-btn .social-icon {
    fill: #0a66c2;
}

/* Responsive design */
@media (max-width: 480px) {
    .social-login-btn {
        padding: 0.875rem 1rem;
        font-size: 16px;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
}

#backtoblog {
    display: none !important;
}