:root {
    --bg-main: linear-gradient(to top, #92fe9d 0%, #2AB296 100%);
    --pulse-color: #00f2fee0;
    --text-color: #272d43;
    --main: #06989e;
}

.register-section {
    background-color: #1C2D3F;
    position: relative;
    padding: 50px 0; 
}
.bg-icon{
    background-color: var(--main);
    color: #fff;
}
.account-header .sub-title a {
    color: var(--main);
}
.text-base, .text-base:hover, .text-base:focus {
    /* color: #365582; */
    color: #4712f2;
}
.go-to-home {
    position: absolute;
    top: 45px;
    right: 45px;
}

.register-section .register-form-area {
    position: relative;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 255, 0.1);
}

.register-section .register-form-area::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../../images/login_bac.jpg") no-repeat center center; 
    background-size: cover;
    z-index: -1;
    opacity: 0.5; /* تقليل وضوح الخلفية */
    border-radius: 10px;
}

.register-section .submit-btn {
    background-color: var(--main);
    color: #fff;
    transition: background-color 0.3s;
}

.register-section .submit-btn:hover {
    background-color: var(--main);
}

/* تنسيق متجاوب */
@media (max-width: 576px) {
    /* .register-section .register-form-area {
        padding: 40px;
    } */
    .register-section{
        padding-top: 60px;
    }
}