#colors {
    /* Updated colors */
    color: #FFB8E0; /* Was #046963 */
    color: #EC7FA9; /* Was #088178 */
    color: #1a1a1a;
    color: #212529;
    /* color: #242424; */ /* Removed duplicate */
    color: #3547B3;
    /* color: #3547B3; */ /* Removed duplicate */
    color: #465b52; /* Kept */
    color: #4f5d77;
    color: #63a2c1;
    color: #d77f7a;
    color: #fff;
}

/* Start Login */

/* Keeping layout styles as they are */
.product { width: 600px !important; margin: 193px 0 100px 0 !important; }
@media (max-width: 576px) { .product, .login { width: 450px !important; } }
@media (max-width: 400px) { .product, .login { width: 400px !important; } }
@media (max-width: 350px) { .product, .login { width: 360px !important; } }

.login {
    position: relative;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 2px solid #EC7FA9; /* Green border replaced */
    padding: 50px;
    border-radius: 10px;
    width: 440px;
    background-color: #fff;
    direction: rtl;
}

.login .extra_login {
    position: relative;
    width: 100%;
    text-align: center;
    color: #535353; /* Kept */
    font-size: 17px;
    /* padding-top: 30px; */
}

.login .extra_login:after {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #53535357; /* Kept */
    z-index: 0;
}

.login .extra_login div {
    display: inline;
    padding: 0 5px;
    background: white; /* Kept */
    z-index: 1;
    position: relative;
}

.login .social {
    list-style: none;
    padding: 0;
    text-align: center;
}

.login .social li {
    display: inline-block !important;
}

.login .social li a {
    font-size: 15px;
    font-weight: 400;
    width: 130px;
    height: 40px;
    line-height: 40px;
    border-radius: 3px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #fff; /* Kept */
    font-family: 'Jost', sans-serif;
}

/* Keeping original social colors */
.login .social .facebook_bg { background-color: #4867aa; }
.login .social .google_bg { background-color: #db4437; }

.login .social li a i {
    height: 40px;
    width: 40px;
    line-height: 40px;
    float: left; /* Keeping original float */
    color: #fff; /* Kept */
    border-radius: 3px;
}

.login .social .facebook_bg i { background: #3b589e; }
.login .social .google_bg i { background: #c3291c; }

.register {
    position: relative;
    left: 50%;
    top: 0;
    margin-bottom: 30px;
    margin-top: 30px;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    border: 2px solid #EC7FA9; /* Green border replaced */
    padding: 50px;
    border-radius: 10px;
    width: 480px;
    background-color: #fff; /* Kept */
}

@media(max-width: 576px) {
    .login .extra_login { font-size: 15px; }
    .login .extra_login:after { top: 12px; }
}

@media (max-width: 480px) {
    .login { width: 100% !important; padding: 50px 25px; }
    .register { width: 100% !important; padding: 50px 25px; }
}

input, select, option { outline: none; }

label {
    font-family: cursive;
    font-weight: 600;
    font-size: 16px;
    color: #1d1d1d; /* Kept */
    direction: rtl;
    text-align: right;
}

.login h4 {
    color: #EC7FA9; /* Green replaced */
    margin-bottom: 30px;
    font-family: cursive;
    font-weight: 700;
    font-size: 27px;
}

.login .submit {
    padding: 10px 0;
    color: white; /* Kept */
    background-color: #EC7FA9; /* Green replaced */
    border: none;
    border-radius: 10px;
    width: 100%;
    box-shadow: 0px 8px 6px #b8b7b750; /* Kept */
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer; /* Added */
}

.login .submit:hover {
    /* Keeping original hover effect */
    -webkit-transform: translate(0, 3px);
    -moz-transform: translate(0, 3px);
    -o-transform: translate(0, 3px);
    transform: translate(0, 3px);
    box-shadow: none; /* Kept */
    background-color: #FFB8E0; /* Added pink hover color */
}

#particles-js {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(45deg, #046962c9, #088178cf, #08817982); */ /* Original green gradient */
    background: linear-gradient(45deg, #FFB8E0c9, #EC7FA9cf, #EC7FA982); /* Pink gradient */
    z-index: -1;
}

.login .sign-up a {
    color: #4f5d77; /* Kept */
}

.login .sign-up a svg {
    position: relative;
    top: 1.5px;
}

/* Keeping form group icon/line styles as they are, assuming they are not green */
.login form .form-group { position: relative; }
.login form .form-group img { position: absolute; left: 7px; top: 39px; height: 23px; width: 23px; z-index: 1; }
.login form .form-group input { padding: 0 5px 0px 43px; }
.login form .form-group:after { content: ''; position: absolute; left: 37px; top: 33px; height: 36px; width: 1px; background: linear-gradient(45deg, #0000, #ccc, #0000); z-index: 1; }

.login .image-box { width: 150px; margin: 0 auto; }
.login .image-box img { width: 100%; }
.image-box img {
    max-width: 100px; /* <-- قم بتغيير هذا الرقم ليناسب الحجم الذي تريده */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
/* End Login */