/* Custom Sign In Plugin Styles */

.login-section8 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0; /* vertical spacing without forcing full height */
}

.login-wrapper8 {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}


.login-container8 {
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-header8 {
    text-align: center;
    margin-bottom: 30px;
}

.login-title8 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #000000;
}

.login-subtitle8 {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.login-form-wrapper8 {
    margin-bottom: 30px;
}

#custom-loginform8 {
    display: flex;
    flex-direction: column;
}

#custom-loginform8 label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #000000;
}

#custom-loginform8 input[type="text"],
#custom-loginform8 input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 20px;
    border: 2px solid #000000;
    border-radius: 4px;
    font-size: 14px;
    background-color: #ffffff;
    color: #000000;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

#custom-loginform8 input[type="text"]:focus,
#custom-loginform8 input[type="password"]:focus {
    outline: none;
    border-color: #333333;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.login-remember8 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#custom-loginform8 input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0 8px 0 0;
    cursor: pointer;
    border: 2px solid #000000;
}

.login-remember8 label {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
}

#custom-loginform8 input[type="submit"] {
    width: 100%;
    padding: 14px 24px;
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#custom-loginform8 input[type="submit"]:hover {
    background-color: #333333;
    border-color: #333333;
}

#custom-loginform8 input[type="submit"]:active {
    transform: translateY(1px);
}

.login-links8 {
    text-align: center;
    margin-top: 15px;
}

.forgot-password8 {
    color: #000000;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid #000000;
    transition: opacity 0.3s ease;
}

.forgot-password8:hover {
    opacity: 0.7;
}

.login-error8 {
    background-color: #000000;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.login-success8 {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000000;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.wholesale-section8 {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid #000000;
}

.wholesale-text8 {
    font-size: 14px;
    color: #000000;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.wholesale-button8 {
    display: inline-block;
    padding: 14px 28px;
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000000;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wholesale-button8:hover {
    background-color: #000000;
    color: #ffffff;
}

.wholesale-button8:active {
    transform: translateY(1px);
}

/* Responsive Design */
@media (max-width: 480px) {
    .login-container8 {
        padding: 30px 20px;
    }
    
    .login-title8 {
        font-size: 24px;
    }
    
    .login-wrapper8 {
        padding: 15px;
    }
}