.elementor-69 .elementor-element.elementor-element-ae9c5ed{--display:flex;--padding-top:2rem;--padding-bottom:2rem;--padding-left:5rem;--padding-right:5rem;}.elementor-69 .elementor-element.elementor-element-ae9c5ed:not(.elementor-motion-effects-element-type-background), .elementor-69 .elementor-element.elementor-element-ae9c5ed > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-bb35c85 );}:root{--page-title-display:none;}/* Start custom CSS for wc-elements, class: .elementor-element-31a3264 *//*Hide Downloads and Payment Methods*/
.woocommerce-MyAccount-navigation-link--downloads,
.woocommerce-MyAccount-navigation-link--payment-methods {
    display: none !important;
}

/*Button Color*/
[type="button"], [type="submit"], button {
  background-color: #4dabe0;
  border: none;
  color: #000;
  font-weight: 600
  margin-top: 30px;
}

[type="button"]:focus, [type="button"]:hover, [type="submit"]:focus, [type="submit"]:hover, button:focus, button:hover {
  background-color: #409ce8;
  color: #000;
  text-decoration: none;
}

/* Main container styling */
#customer_login {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Column styling */
.u-column1, .u-column2 {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Form header styling */
#customer_login h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

/* Form input styling */
.woocommerce-form-row {
    margin-bottom: 20px;
}

.woocommerce-form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.woocommerce-Input--text {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.woocommerce-Input--text:focus {
    border-color: #4DABE0;
    outline: none;
    box-shadow: 0 0 0 1px #0073aa;
}

/* Button styling */
.woocommerce-button {
    width: 100%;
    padding: 12px;
    background-color: #4DABE0;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.woocommerce-button:hover {
    background-color: #5ebcd0;
}

/* Remember me checkbox */
.woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.woocommerce-form-login__rememberme input {
    margin-right: 10px;
}

/* Lost password link */
.lost_password {
    text-align: center;
    margin-top: 15px;
}

.lost_password a {
    color: #FF228C;;
    text-decoration: none;
}

.lost_password a:hover {
    text-decoration: none;
}

/* Privacy policy text */
.woocommerce-privacy-policy-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Password input wrapper */
.password-input {
    position: relative;
    display: block;
}

.show-password-input {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #777;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #customer_login {
        flex-direction: column;
    }
    
    .u-column1, .u-column2 {
        width: 100%;
    }
}

/* Main account container */
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
    padding: 30px;
    box-sizing: border-box;
}

/* Navigation sidebar */
.woocommerce-MyAccount-navigation {
    width: 250px;
    float: left;
    background: #FDD800;
    border-radius: 8px 0 0 8px;
    min-height: 400px;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-MyAccount-navigation-link {
    margin-bottom: 5px;
}

.woocommerce-MyAccount-navigation-link a {
    display: block;
    padding: 12px 15px;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.woocommerce-MyAccount-navigation-link a:hover {
    background: #ECC900;
    color: #fff;
}

.woocommerce-MyAccount-navigation-link.is-active a {
    background: #fee800;
    color: #000;
    font-weight: 600;
}

/* Content area */
.woocommerce-MyAccount-content {
    width: calc(100% - 250px);
    float: right;
    background: #fff;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

/* Dashboard welcome message */
.woocommerce-MyAccount-content p:first-of-type {
    font-size: 16px;
    margin-bottom: 25px;
    color: #555;
}

.woocommerce-MyAccount-content strong {
    color: #000;
}

.woocommerce-MyAccount-content a {
    color: #ff228c;
    text-decoration: none;
    transition: color 0.3s;
}

.woocommerce-MyAccount-content a:hover {
    color: #dd228c;
    text-decoration: none;
}

/* Clear floats */
.woocommerce:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive design */
@media (max-width: 768px) {
    .woocommerce-MyAccount-navigation,
    .woocommerce-MyAccount-content {
        width: 100%;
        float: none;
        border-radius: 8px;
    }
    
    .woocommerce-MyAccount-navigation {
        margin-bottom: 20px;
        border-radius: 8px;
    }
    
    .woocommerce-MyAccount-content {
        border-radius: 8px;
    }
}


/* Logout link styling */
.woocommerce-MyAccount-navigation-link--customer-logout a {
    color: #e74c3c;
}

.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background: rgba(231, 76, 60, 0.1);
}

/* Notices wrapper */
.woocommerce-notices-wrapper {
    margin-bottom: 20px;
}/* End custom CSS */