.account-form-wrapper {
    display: flex;
    background-color: #fff;
    margin-top: 10px;
    padding: 30px;
}

.account-form-wrapper > div {
    width: 50%;

}

.account-form-wrapper .left {
    background: rgba(237, 243, 255, 1) url(../images/account-bg.png) no-repeat center 50px;
    padding: 70px;
    box-sizing: border-box;
    width: 50%;
}

.account-form-wrapper .left h1 {
    font-size: 20px;
    font-weight: 600;
    color: rgba(4, 20, 54, 1);
    margin-top: 40px;

}

.account-form-wrapper .left ul li {
    font-size: 16px;
    font-weight: 400;
    color: rgba(60, 64, 73, 1);
    margin-top: 20px;
}

.account-form-wrapper .right {
    padding: 50px 50px 50px 80px;
    box-sizing: border-box;

}

.account-form-wrapper .right > p:last-of-type {
    text-align: center;
    max-width: 399px;
}

.account-form-wrapper .right p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(44, 51, 66, 1);
    margin-bottom: 15px;
}

.account-form-wrapper .right p span {
    color: rgba(5, 143, 19, 1);
    font-weight: 700;
}

.inputstyle6 {
    height: 42px;
    border-radius: 6px;
    padding: 0 20px;
    border: 1px solid rgba(208, 208, 208, 1);
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 400;

}

.inputwrapper {
    margin-bottom: 10px;
    text-align: left;
}

.account-form-wrapper .form-wrapper .product-btn {
    width: 100%;
    margin-top: 15px;
}

.account-form-wrapper .product-item-card > div {
    padding: 20px;
    text-align: center;
}

.account-form-wrapper .product-item-card {
    margin: 50px 0 20px 0;
}


.account-form-wrapper .right p a {
    color: rgba(0, 51, 160, 1);
    font-weight: 600;
}

.login .product-item-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: rgba(40, 58, 96, 1);
    margin: 20px 0 5px 0;
}

.radiostyle2 {
    font-size: 12px;
    font-weight: 400;
    margin-top: 5px;
    color: rgba(101, 101, 101, 1);
    text-align: left;
}

.radiostyle2 input {
    width: 16px;
    vertical-align: sub;
    margin-right: 5px;
    height: 16px;

}

.login.account-form-wrapper .right div > p {
    color: rgba(129, 129, 129, 1);
    margin-bottom: 35px;
}

.login.account-form-wrapper .left {
    padding: 160px 70px 0 70px;
}

.login.account-form-wrapper .form-wrapper .error-wrapper {
    text-align: left;
    margin-top: 5px;
}

.product-item-card {
    max-width: 399px;
    width: 100%;
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0px 20px 43px 0px rgba(161, 161, 161, 0.3);
}

.product-item-card.full {
    max-width: 100%;

}

.product-item-card h2 {
    background: rgba(0, 51, 160, 1);
    border-radius: 16px 16px 0px 0px;
    color: #fff;
    padding: 8px 5px;
    text-align: center;
}

.ecom-items.ecom-form {
    margin: 0;
}

.ecom-items.ecom-form li {
    padding: 20px;
    justify-content: flex-start;
}

.product-item-card h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 29px;
}

.labelstyle2 {
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
    /* margin-right: 15px; */
}

.account-form-wrapper .form-wrapper .product-btn {
    width: 100%;
    margin-top: 15px;
}

.product-btn.blue {
    background: rgba(0, 51, 160, 1);
    color: #fff;
}

.product-btn {
    padding: 10px 12px 10px 12px;
    border-radius: 4px;
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: rgba(70, 79, 98, 1);
    border: 0;
    /* margin-left: 10px; */
    cursor: pointer;
}

.flash_error_message {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background: red;
    padding: 5px;
    margin: 15px 5px;
}

.flash_success_message {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background: #52AE0A;
    padding: 5px;
    margin: 15px 5px;
}

.errorMass {
    color: red;
    font-size: 13px;
    padding: 2px 5px;
}

/* CSS for the Error Message */
.error-container {
    /* Layout and Spacing */
    margin: 20px auto;
    padding: 15px 20px;
    width: 80%;
    max-width: 500px;

    /* Color and Border */
    background-color: #ffebe8; /* Very light red/pink background */
    border: 1px solid #dd3c10; /* Solid red border */
    border-radius: 5px; /* Rounded corners */

    /* Text Styling */
    color: #dd3c10; /* Dark red text */
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;

    /* Flexbox for alignment (optional but good practice) */
    display: flex;
    align-items: center; /* Vertically align icon and text */
    gap: 10px; /* Space between icon and text */
}

.error-icon {
    /* Styling for the icon/symbol (e.g., '!') */
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.error-message {
    flex-grow: 1; /* Allows the message text to take up the remaining space */
}