* {
    box-sizing: border-box;
}

:root {
    --fit-orange: #ff5a1f;
    --fit-orange-dark: #e64b13;
    --fit-dark: #111111;
    --fit-gray: #6c757d;
    --fit-bg: #f4f5f7;
    --fit-border: #e5e7eb;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    background: var(--fit-bg);
    color: #171717;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.cadastro-page {
    min-height: 100vh;
    padding: 28px;
    display: grid;
    place-items: center;
}

.cadastro-shell {
    width: min(1080px, 100%);
    min-height: 690px;
    display: grid;
    grid-template-columns:
        minmax(320px, .9fr)
        minmax(420px, 1.1fr);
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, .12);
}

.cadastro-side {
    position: relative;
    padding: 38px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(255, 90, 31, .28),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #191919,
            #050505
        );
    color: #fff;
}

.cadastro-side::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 330px;
    height: 330px;
    border: 58px solid rgba(255, 90, 31, .1);
    border-radius: 50%;
}

.cadastro-brand {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-decoration: none;
}

.cadastro-brand span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--fit-orange);
    color: #fff;
}

.cadastro-side-content {
    position: relative;
    z-index: 2;
    margin-top: 110px;
}

.cadastro-side-content > small {
    color: var(--fit-orange);
    font-weight: 900;
    letter-spacing: .12em;
}

.cadastro-side h1 {
    max-width: 460px;
    margin: 12px 0 18px;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
}

.cadastro-side p {
    max-width: 450px;
    color: #c7c7c7;
    font-size: 1.02rem;
    line-height: 1.7;
}

.cadastro-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    color: #efefef;
}

.cadastro-benefit i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 90, 31, .16);
    color: var(--fit-orange);
}

.cadastro-form-area {
    padding: 54px;
    display: grid;
    place-items: center;
}

.cadastro-card {
    width: min(470px, 100%);
}

.cadastro-card h2 {
    font-weight: 900;
}

.form-label {
    font-weight: 700;
}

.input-group-text {
    min-width: 46px;
    justify-content: center;
    border-color: var(--fit-border);
    background: #f7f7f7;
}

.form-control,
.btn-eye {
    min-height: 48px;
    border-color: var(--fit-border);
}

.form-control:focus {
    border-color: rgba(255, 90, 31, .7);
    box-shadow:
        0 0 0 .2rem rgba(255, 90, 31, .12);
}

.btn-cadastrar {
    min-height: 52px;
    border: 0;
    border-radius: 12px;
    background:
        linear-gradient(
            135deg,
            var(--fit-orange),
            #ff7b39
        );
    color: #fff;
    font-weight: 900;
    box-shadow:
        0 10px 24px rgba(255, 90, 31, .22);
}

.btn-cadastrar:hover,
.btn-cadastrar:focus {
    background:
        linear-gradient(
            135deg,
            var(--fit-orange-dark),
            var(--fit-orange)
        );
    color: #fff;
}

.plano-escolhido {
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    border: 1px solid #ffd7c8;
    border-radius: 14px;
    background: #fff5f0;
}

.plano-escolhido small {
    display: block;
    color: #9a4b2c;
    font-size: .69rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.plano-escolhido strong {
    display: block;
    color: #1c1c1c;
}

.plano-escolhido a {
    color: var(--fit-orange);
    font-weight: 800;
}

.cadastro-login {
    color: var(--fit-gray);
    text-align: center;
}

.cadastro-login a {
    color: #111;
    font-weight: 800;
}

@media (max-width: 850px) {

    .cadastro-page {
        padding: 0;
        background: #fff;
    }

    .cadastro-shell {
        min-height: 100vh;
        display: block;
        border-radius: 0;
        box-shadow: none;
    }

    .cadastro-side {
        min-height: auto;
        padding: 26px 22px 30px;
    }

    .cadastro-side-content {
        margin-top: 42px;
    }

    .cadastro-side h1 {
        max-width: 560px;
        font-size: 2.4rem;
    }

    .cadastro-side p {
        margin-bottom: 0;
    }

    .cadastro-benefit {
        display: none;
    }

    .cadastro-form-area {
        padding: 34px 22px 46px;
    }
}

@media (max-width: 450px) {

    .cadastro-side h1 {
        font-size: 2rem;
    }

    .cadastro-form-area {
        padding-left: 16px;
        padding-right: 16px;
    }
}
