/* Login Page Styles */
.login-page {
    background-color: #F2F2F2;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.login-container {
    width: 100%;
    max-width: 570px;
}

.login-box {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 60px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Login Title with Gradient */
.login-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 29.65px;
    line-height: 36px;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(270deg, #294AFF 0%, #1FD3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Form Styles */
.login-form {
    width: 100%;
    max-width: 378px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13.15px;
    line-height: 16px;
    color: #9A9A9A;
    margin-bottom: 8px;
}

.input-wrapper {
    position: relative;
}

.form-control {
    width: 100%;
    height: 59px;
    padding: 0 20px 0 45px;
    background: #FBFBFB;
    border: 1px solid #CCCCCC;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #294AFF;
    background: #FFFFFF;
}

.form-control::placeholder {
    color: transparent;
}

/* Input Icons */
.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 19.2px;
    height: 19.2px;
    color: #9A9A9A;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.input-icon.icon-lock {
    width: 17px;
    height: 19px;
}

.form-control:focus + .input-icon,
.form-control:not(:placeholder-shown) + .input-icon {
    opacity: 0;
}

.form-control:placeholder-shown:not(:focus) + .input-icon {
    opacity: 1;
}

/* Login Button */
.btn-login {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background: linear-gradient(270deg, #294AFF 0%, #1FD3FF 100%);
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 32px;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 74, 255, 0.3);
}

.btn-login:active {
    transform: translateY(0);
}

.btn-login .icon-arrow {
    width: 15px;
    height: 16px;
    flex-shrink: 0;
}

.btn-login span {
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
}

/* Login Footer */
.login-footer {
    text-align: right;
    margin-top: 24px;
}

.forgot-password {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13.15px;
    line-height: 16px;
    color: #9A9A9A;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #294AFF;
}

/* Error Messages */
.woocommerce-error {
    background: #FFE6E6;
    border: 1px solid #FF4444;
    border-radius: 6px;
    padding: 12px 20px;
    margin-bottom: 20px;
    color: #CC0000;
    font-size: 14px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-box {
        padding: 40px 20px;
    }
    
    .login-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .form-control {
        height: 50px;
        font-size: 14px;
    }
    
    .btn-login {
        height: 44px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .login-page {
        padding: 20px 15px;
    }
    
    .login-box {
        padding: 30px 15px;
    }
}