﻿
body {
    background: rgb(249,249,249);
}

.login-register {
    border-radius: 15px;
    padding: 1rem;
    max-width: 600px;
    margin: auto;
    direction: rtl;
    box-shadow: 0 0px 28px rgba(0,0,0,0.1);
    background-color: white;
}

.login-register__header {
    margin-bottom: 3rem;
    text-align: center;
}

.login-register__title {
    color: #424242;
    font-weight: 700;
    margin-bottom: 1rem;
}

.login-register__title-underline {
    width: 91px;
    height: 3px;
    background: #e8cf75;
    margin: 0 auto;
}

.login-register__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-register__input-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.login-register__label {
    color: #696464;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.login-register__required {
    color: red;
    margin-top: -0.3rem;
}

.login-register__input-wrapper {
    position: relative;
    border: 1px solid #efefef;
    border-radius: 5px;
    background: #fcfcfc;
}

.login-register__input {
    width: 100%;
    padding: 0.75rem 0.5rem;
    border: none;
    background: transparent;
    color: #b5b5b5;
}

.login-register__password-toggle {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}

.login-register__security-info {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.login-register__security-icon {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 50% 35%, #696464 15%, transparent 15%), radial-gradient(circle at 35% 65%, #696464 15%, transparent 15%), radial-gradient(circle at 65% 65%, #696464 15%, transparent 15%);
}

.login-register__submit-btn {
    background: #80b022;
    color: #fff;
    border: none;
    border-radius: 11px;
    padding: 0.75rem 1.5rem;
    width: 100%;
    cursor: pointer;
    transition: opacity 0.3s;
    font-size:1rem;

}

    .login-register__submit-btn:hover {
        opacity: 0.9;
    }

@media (max-width: 480px) {
    .login-register {
        padding: 2rem;
    }

    .login-register__title {

    }
}



<style >
.login-descriptions {
    direction: rtl;
    max-width: 1000px;
    margin: auto;
    padding: 2rem;
}

.login-descriptions__section {
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}

.login-descriptions__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.login-descriptions__title {
    color: #363636;
}

.login-descriptions__triangle {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #e8cf75;
    transform: rotate(180deg);
    margin-right: 8px;
}
.login-descriptions__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-descriptions__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.login-descriptions__bullet {
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    background: #334d5c;
    border-radius: 50%;
    margin-top: 0.4rem;
}

.login-descriptions__item span {
    color: #7a7a7a;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .login-descriptions {
        padding: 1rem;
    }

    .login-descriptions__title {

    }

    .login-descriptions__item span {

    }
}

.main-account-container{
    padding: 0 10%;
}


.success-alert {
    background: rgba(128, 176, 34, 0.14);
    border-radius: 7px;
    padding: 15px 30px 15px 10px;
    max-width: 587px;
    margin: 20px auto;
    position: relative;
}

.success-alert__content {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
}

.success-alert__lines {
    width: 25px;
    height: 25px;
    font-weight: 900;
    color: #598600;
    display:flex;
    justify-content:end;
    align-items:center;
}


.success-alert__text {
    color: #598600;
    flex-grow: 1;
}

.success-alert__icon {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 20px;
    color: #80b022
}


.success-alert__check-part {
    position: absolute;
    background: #fff;
    border-radius: 2px;
}

    .success-alert__check-part.left {
        width: 6px;
        height: 12px;
        transform: rotate(45deg);
        left: 8px;
        top: 5px;
    }

    .success-alert__check-part.right {
        width: 6px;
        height: 18px;
        transform: rotate(-45deg);
        left: 12px;
        top: 3px;
    }

@media (max-width: 600px) {
    .success-alert__content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .success-alert__text {
        text-align: center;
        order: -1;
        width: 100%;
        margin: 10px 0;
    }
}


.register-new-user {
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    padding: 0.75rem;
    max-width: 600px;
    margin: .5rem auto;
    box-shadow: 0 14px 28px rgba(0,0,0,0.1);
    position: relative;
}

.register-new-user__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.register-new-user__separator {
    width: 80%;
    border-bottom: 1px dashed #ed1c24;
    margin: 1rem 0;
}

.register-new-user__text {
    display: flex;
    gap: 0.5rem;
}

.register-new-user__prompt {
    color: #9b9b9b;
}

.register-new-user__cta {
    color: #80b022;
    text-decoration: underline;
    cursor: pointer;
}
/*.register-new-user__cta {
    color: rgb(88, 197, 199);
    text-decoration: underline;
    cursor: pointer;
}
*/.recover_pass__cta {
    color: rgb(88,197,199);
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 480px) {
    .register-new-user__text {
        flex-direction: column;
        align-items: center;
    }

    .register-new-user__separator {
        width: 60%;
    }
}

.register-new-user__divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: .25rem 0;
    color: #4d4d4d;
}

    .register-new-user__divider::before,
    .register-new-user__divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid rgba(112,112,112,0.24);
    }
.register-new-user__social-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.register-new-user__social-btn {
    background: rgba(255,255,255,0.22);
    border: 1px solid rgba(112, 112, 112, 0.24);
    border-radius: 5px;
    padding: 0.5rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    white-space:nowrap;
    flex-grow:1;
    justify-content:space-around;
}

.register-new-user__email-icon,
.register-new-user__google-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.register-new-user__google-icon {

}

.register-new-user__captcha {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

.register-new-user__captcha-box {
    background: #fe6377;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-family: "Segoe UI";
}

.register-new-user__captcha-refresh {
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

    .register-new-user__captcha-refresh::before {
        content: '';
        position: absolute;
        width: 12px;
        height: 12px;
        border-left: 2px solid #848484;
        border-bottom: 2px solid #848484;
        transform: rotate(135deg);
        top: 6px;
    }

@media (max-width: 768px) {
    .register-new-user {
        padding: 2rem;
    }

    .register-new-user__social-btns {
        flex-direction: column;
    }
}