* {
    box-sizing: border-box;
}

#header_site {
    background-color: #00403D !important;
}

#header_site.scrolled {
    background: white !important;
}

#header_site .menu_site li a::before {
    color: white !important;
}

#header_site.scrolled .menu_site li a::before {
    color: #00403D !important;
}

#footer_site {
    background: #00403D;
}

.shapes-loading {
    color: #28a745 !important;
}

body::before {
    background: white;
}

.ff-title {
    color: black;
}

.or_about_wrapper {
    overflow: hidden;
    background: white;
}

.or_about_wrapper .or_projects_content {
    position: relative;
    z-index: 1;
    background: white;
    padding: 100px 0px;
    display: flex;
    flex-direction: column;
    /* min-height: 500px; */
}



.form-container .title-form {
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}

.form-container .inp-side {
    color: black;
}

.form-container .des {
    font-size: 12px;
    color: black;
}

.form-container .error-message {
    padding-left: 5px;
    text-align: left;
    width: 100%;
    font-size: 12px;
    color: rgb(221, 56, 56);
    display: none;
}

.form-container a {
    color: #333 !important;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0;
}

.form-container button {
    border-radius: 20px;
    border: 1px solid #00403D;
    background-color: #00403D;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: bold;
    padding: 12px 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    margin-top: 15px;
}

.form-container button:active,
.form-container button:hover {
    transform: scale(0.95);
}

.form-container button:focus {
    outline: none;
}

.form-container .form {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
}

.form-container .form input {
    color: black;
    background-color: #eee;
    border: none;
    padding: 10px 13px;
    margin: 6px 0;
    width: 100%;
    border-radius: 10px;
}

.edit-form {
    background-color: #f6f6f6;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35),
        0 10px 10px rgba(0, 0, 0, 0.32);
    position: relative;
    overflow: hidden;
    width: 400px;
    max-width: 100%;
    min-height: 430px;
    margin: auto;
}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.edit-form a {
    color: #D9FF00 !important;
}

.input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.input-wrapper input {
    padding-right: 30px;
    box-sizing: border-box;
}

.input-wrapper i {
    color: red;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
    animation-duration: 1.4s;
    display: none;
}

.input-wrapper i::before {
    color: rgb(221, 56, 56);
}

#username {
    background-color: #d5d5d5;
}




.edit-form .form-container {
    left: 0;
}

.edit-form .signup-title {
    margin-bottom: 20px;
}



#sign-up-container-mobile {
    position: absolute;
    width: 100%;
}

.sign-up-container-mobile .form {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 30px;
    height: 100%;
    width: 100%;
    text-align: center;
}



.edit-form .form-container .form input {
    padding: 9px 11px;
    margin: 4px 0;
}


/* ─── RESPONSIVE STYLES ─────────────────────────────────────── */
/*
 * Rules:
 * - Always use max-width (mobile-last).
 * - Order: xxl → xl → lg → md → sm → xs → xxs (high to low).
 */

/* md: 992px */
@media (max-width: 992px) {
    #header_site.scrolled {
        background: #00403D !important;
    }

    #header_site.logo_red.scrolled .hamburger_btn .hamburger-icon span {
        background-color: #faffff;
    }
}

/* xs: 576px */
@media (max-width: 576px) {
    .or_about_wrapper .or_projects_content {
        padding: 70px 0px;
    }

    .edit-form {
        width: 360px;
    }

    .form-container button {
        font-size: 12px;
        padding: 12px 50px;
        margin-top: 12px;
    }
}

/* xxs: 450px */
@media (max-width: 450px) {
    .edit-form {
        width: 330px;
    }
}