body {
    background-color: #F8F8F8;
}
.registro {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}
.registro__container {
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.registro__title h1 {
    font-family: SFProDisplay-Thin;
}
.registro__note {
    font-size: 18px;
    font-family: SFProDisplay-Light;
    margin-bottom: 10px;
}
.registro__form__content input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #53565A;
    margin-bottom: 16px;
    border: 1px solid #53565A;
    outline: none;
    font-family: SFProDisplay-Light;
}
.registro__errmsg {
    display: none;
    color: #fff;
    text-align: center;
    padding: 6px 10px;
    margin-bottom: 10px;
    background-color: red;
}
.registro__txt {
    margin-bottom: 16px;
}
.registro__btn {
    display: block;
    color: #fff;
    font-size: 18px;
    width: 140px;
    text-align: center;
    text-decoration: none;
    padding: 12px 0;
    border: 0;
    margin-bottom: 10px;
    background-color: #FF8200;
    font-family: SFProDisplay-Light;
}
.registro__lnk {
    color: #FF8200;
    font-family: SFProDisplay-Light;
}
.registro__red {
    position: absolute;
    right: 20px;
    bottom: -40px;
    width: 24px;
    height: 24px;
    background-color: red;
    cursor: pointer;
    border: 1px solid #000;
}

@media screen and (min-width: 500px) {

    .registro {
        padding: 100px 20px;
    }
    .registro__container {
        width: 400px;
    }
    .registro__errmsg {
        margin-bottom: 12px;
    }
    .modal {
        padding: 20px 25px;
    }

}

@media screen and (min-width: 768px) {

    .registro__container {
        padding: 30px;
    }
    .registro__btn {
        width: 180px;
    }
    .modal {
        width: 500px;
    }
}

@media screen and (min-width: 1000px) {

    .registro {
        padding: 120px 20px;
    }
    .registro__note {
        font-size: 22px;
    }
    .registro__container {
        width: 600px;
    }
    .registro__form__content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .registro__form__content input { 
        width: 250px;
        margin-bottom: 24px;
    }
    .registro__errmsg {
        margin-top: -12px;
    }
    .modal {
        padding: 30px;
    }

}

@media screen and (min-width: 1200px) {

    .registro__title h1 {
        font-size: 34px;
    }
    .registro__form__content input {
        font-size: 18px;
        width: 270px;
    }
    .registro__btn {
        font-size: 20px;
    }
    .registro__container {
        width: 620px;
    }
    .modal {
        width: 520px;
        padding: 30px 35px;
    }
    .modal__txt {
        font-size: 24px;
    }
    .modal__txt2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

}