:root {
    --orange: #ff7f32;
    --purple: #5c068c;
    --light-gray: #a8a99e;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@font-face {
    font-family: 'D-DIN';
    src: url("../fonts/D-DIN.otf") format('opentype');
    font-weight: normal;
}

@font-face {
    font-family: 'D-DIN';
    src: url("../fonts/D-DIN-Bold.otf") format('opentype');
    font-weight: bold;
}

body {
    font-family: "D-DIN";
    margin: 0;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 2em 6em;
    background-color: var(--purple);
    padding-bottom: 5em;
}

    header > a {
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
    }

.wrapper4 {
    display: flex;
    position: relative;
    flex-direction: column;
    border-radius: 15px;
    margin-top: -40px;
    background-color: white;
    padding: 1em 3em;
    z-index: 99;
}

    .wrapper4 > p {
        color: var(--orange);
        margin-bottom: 3em;
    }

    .wrapper4 > label {
        color: var(--purple);
        margin-bottom: 1em;
        font-weight: bold;
    }

    .wrapper4 > input {
        border: none;
        border-radius: 15px;
        font-family: inherit;
        font-size: 2.5rem;
        box-shadow: 0 0 5px 3px rgba(0,0,0,0.2);
        padding-inline: 10px;
        width: 13em;
    }

.big-fs {
    font-size: 2rem;
    font-weight: bold;
}

.normal-fs {
    font-size: 1.5rem;
}

.small-fs {
    inline-size: 70ch;
}

.continuar {
    position: absolute;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    text-transform: uppercase;
    color: white;
    box-shadow: 0 0 5px 3px rgba(0,0,0,0.2);
    background-color: var(--orange);
    padding: 10px 2em;
    right: 5em;
    top: 2em;
}

.leyenda {
    position: absolute;
    font-size: 2rem;
    inline-size: 24ch;
    right: 1em;
    bottom: 0;
}

.box {
    position: absolute;
    top: 2em;
    right: 6em;
    width: 200px;
    height: 50px;
    background-color: var(--orange);
    border-radius: 10px;
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

.profesion2{
    display:none;
}


