@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    height: 11in;
    width: 8.5in;

    overflow: none;
}

.grafismos{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px;
    overflow: hidden;
}

.border{
    border: 3px solid #F59D11;
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.lat_der{
    position: absolute;
    transform: rotate(90deg);
    height: 11.7in;
    bottom: -670px;
    left: -415px;
}

.lat_izq{
    position: absolute;
    transform: rotate(85deg);
    height: 11.7in;
    top: -450px;
    right: -415px;
}

.info{
    position: absolute;
    top: 0;
    left: 0;
    height: 100% ;
    width: 100%;

    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
}

.logo{
    position: absolute;
    top: 50%;
    right: 40px;
    width: 250px;
    transform: matrix(0, 1, -1, 0, 0, 0) translate(-50%);
}

.info-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transform: matrix(0, 1, -1, 0, 0, 0);
}

.part1{
    margin-top: 100px;
    font-size: 82px;
    font-size: 600;
}

.name-field{
    min-width: 600px;
    max-width: 700px;
    border-bottom: 2px solid black;
    font-size: 44px;
    padding: 0px;
}

.name-field input{
    width: 90%;
    border: none;
    outline: none;
    text-align: center;
    font-size: 26px;
    margin-bottom: -20px;
}

.part2{
    font-size: 20px;
    min-width: 600px;
    max-width: 700px;
    text-align: center;
    font-weight: 200;
    margin-top: 30px;
}

.part2 .marcado{
    font-size: 20px;
    font-weight: 500;

    min-width: 20px;
    box-sizing: border-box;
}

.field-container{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 700px;
    margin-top: 100px;
}

.field{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.field input{
    width: 250px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid black;
}


