/* Login Redesign - Custom Styles */

.uniderma-login-container {
    width: 500px !important;
    margin: 0 auto !important;
    padding: 50px !important;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    color: #333 !important;
    background: #fff !important;
}

.uniderma-login-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.uniderma-login-logos img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.uniderma-login-header {
    margin-bottom: 25px;
}

.uniderma-login-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.uniderma-login-header p {
    font-size: 15px;
    line-height: 1.5;
    color: #666;
}

.uniderma-login-header p strong {
    color: #333;
}

/* Modern Input Styles */
.uniderma-login-form .form-row {
    margin-bottom: 25px;
    position: relative;
}

.uniderma-login-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.uniderma-login-form input[type="text"],
.uniderma-login-form input[type="email"],
.uniderma-login-form input[type="password"] {
    width: 100% !important;
    border: none !important;
    border-bottom: 1px solid #ccc !important;
    padding: 10px 0 !important;
    font-size: 16px !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: border-color 0.3s ease;
}

.uniderma-login-form input:focus {
    border-bottom-color: #00d65e !important;
    outline: none !important;
}

.uniderma-login-form input::placeholder {
    color: #999;
    font-size: 14px;
}

/* Password Toggle */
.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    display: flex;
    align-items: center;
}

.password-toggle i {
    font-size: 20px;
}

/* Lost Password Link */
.uniderma-lost-password {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.4;
    color: #666;
}

.uniderma-lost-password a {
    color: #333;
    text-decoration: underline;
    font-weight: 500;
}

/* Action Button */
.uniderma-login-form .button.woocommerce-form-login__submit {
    width: 100% !important;
    background-color: #203266 !important;
    color: white !important;
    border: none !important;
    padding: 4px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    margin-top: 30px !important;
    text-transform: none !important;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.uniderma-login-form .button.woocommerce-form-login__submit:hover {
    background-color: #00c054 !important;
    transform: translateY(-1px);
}

/* Footer Link */
.uniderma-login-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 15px;
    color: #666;
}

.uniderma-login-footer a {
    color: #333;
    text-decoration: underline;
    font-weight: 600;
}

/* Lightbox specific adjustments */
.account-container.lightbox-inner {
    max-width: 500px !important;
}

.account-login-inner,
.account-register-inner {
    padding: 0 !important;
}

header.uniderma-login-logos {
    border-bottom: 1px solid #efefef;
    padding-bottom: 15px;
    margin-bottom: 25px;
    width: 100%;
}