.signin_content {
    width: 100%;
    height: auto;
    margin-top: 110px;
    display: flex;
    flex-direction: column;
}

.signin_content * {
    box-sizing: border-box;
    min-width: 0;
}

.signin_container {
    width: 100%;
    min-height: calc(100vh - 110px);
    padding: 60px max(40px, calc((100% - 1180px) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    background-image:
        linear-gradient(90deg, rgba(2, 11, 19, 0.98) 0%, rgba(2, 11, 19, 0.9) 38%, rgba(2, 11, 19, 0.32) 72%, rgba(2, 11, 19, 0.18) 100%),
        url('../assets/background-portal.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.signin_panel {
    width: 100%;
    max-width: 480px;
    padding: 38px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: linear-gradient(110deg, rgba(6, 14, 21, 0.97) 0%, rgba(12, 17, 22, 0.95) 100%);
    border: solid 1px #1b242b;
    border-radius: 12px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.signin_intro {
    display: flex;
    flex-direction: column;
}

.signin_eyebrow {
    color: var(--textColorOrange);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.signin_intro h1 {
    margin: 14px 0 0;
    font-size: 2.15rem;
    font-weight: 700;
    line-height: 1.15;
}

.signin_intro h1 span {
    color: transparent;
    background-image: linear-gradient(0deg, #ee5607 0%, #f27511 69%);
    background-clip: text;
    -webkit-background-clip: text;
}

.signin_intro p {
    margin: 14px 0 0;
    color: #aaa6a7;
    font-size: 0.87rem;
    line-height: 23px;
}

.signin_form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signin_field {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.signin_field label {
    color: #d8d4d5;
    font-size: 0.82rem;
    font-weight: 500;
}

.signin_password_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.signin_forgot {
    color: #f27511 !important;
    font-size: 0.75rem;
    font-weight: 500;
}

.signin_forgot:hover {
    color: #ff9438 !important;
}

.signin_field input {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.9rem;
    background-color: #0b1218;
    border: solid 1px #283139;
    border-radius: 8px;
    outline: none;
    transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.signin_field input::placeholder {
    color: #666b70;
}

.signin_field input:focus {
    border-color: #c86516;
    background-color: #0e171e;
    box-shadow: 0 0 0 3px rgba(238, 86, 7, 0.1);
}

.signin_submit {
    width: 100%;
    height: 52px;
    margin-top: 4px;
    padding: 0 22px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
}

.signin_signup {
    width: 100%;
    max-width: 470px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    color: #d8d4d5;
    font-size: 1rem;
    line-height: 25px;
}

.signin_signup a {
    color: #ffffff !important;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.25;
}

.signin_signup a:hover {
    color: #f27511 !important;
}

@media (max-width: 767px) {
    .signin_container {
        min-height: calc(100vh - 110px);
        padding: 36px 20px;
        flex-direction: column;
        justify-content: center;
        gap: 26px;
        background-image:
            linear-gradient(rgba(2, 11, 19, 0.68), rgba(2, 11, 19, 0.84)),
            url('../assets/background-portal.png');
        background-position: 68% center;
    }

    .signin_panel {
        padding: 30px 26px;
    }

    .signin_signup {
        max-width: 480px;
        align-items: center;
        gap: 7px;
        font-size: 0.8rem;
        line-height: 20px;
        text-align: center;
    }

    .signin_signup a {
        font-size: 1rem;
    }

    .signin_intro h1 {
        font-size: 1.85rem;
    }
}

@media (max-width: 420px) {
    .signin_container {
        padding: 24px 14px;
    }

    .signin_panel {
        padding: 26px 20px;
        gap: 26px;
    }

    .signin_password_header {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }
}
