/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 2. Remove default margin */
* {
    margin: 0;
}

body {
    /* 3. Add accessible line-height */
    line-height: 1.5;
    /* 4. Improve text rendering */
    -webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input,
button,
textarea,
select {
    font: inherit;
}

/* 7. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
    text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

/*
    9. Create a root stacking context
  */
#root,
#__next {
    isolation: isolate;
}

body::-webkit-scrollbar {
    display: none
}



body {
    background: url(./img/bg.png) no-repeat center center / cover;
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
}

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


.container {
    max-width: 1200px;
    margin: 0 auto;
}

.content {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}

.content h2 {
    padding: 10px 0 26px 0;
    text-align: center;
    color: #fff;
    font-size: 33px;
}

.content-wrap {
    display: flex;
    gap: 0 24px;
}

.content-wrap p {
    text-align: justify;
}


.textVip {
    text-align: left;
    font-weight: bold;
    font-size: 17px;
    text-align: justify;
    margin: 15px 0 14px 0;
}

.button {
    display: flex;
    margin: 20px auto 0 auto;
    background-color: #ECD152;
    width: fit-content;
    padding: 15px 20px;
    color: #9C4922;
    border-radius: 12px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.content-wrap img {
    width: 25vw;
    height: -webkit-fill-available;
}

.content-Text {
    color: #fff;
}

.content-Text ul {
    margin: 0 0 0px -31px;
    list-style: none;
}

.content-Text ul li {
    text-align: left;
    margin: 0 0 11px 0;
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 4% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    position: relative;
    /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 19px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.boxInput {
    margin: 5px 0 20px 0;
}

.boxInput input {
    padding: 10px;
    border: 3px solid #000;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
}

.textSub {
    margin: 11px 0 0 0;
}

.buttonConf {
    display: flex;
    background-color: #ECD152;
    width: fit-content;
    padding: 15px 20px;
    color: #9C4922;
    border-radius: 4px;
    font-size: 20px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.content-step {
    width: 73%;
    margin: 0 auto;
}

.textStep {
    text-align: left;
    font-size: 19px;
}

.textStep span {
    font-weight: bold;
}

form {
    display: flex;
    gap: 0 10px;
    margin: 0 auto;
    justify-content: center;
}

#message {
    color: red;
    margin: 9px 0 0 0;
}

.error {
    color: red;
}

.hidden {
    display: none;
}
.title-modal {
  font-size: 32px;
}
.huongdan {
margin: 8px 0 15px 0;
}

@media(max-width:500px) {
    .content {
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
    }

    .content-wrap {
        display: grid;
        gap: 20px 0;
    }
  .content h2 {
    padding: 20px 0 26px 0;
    text-align: center;
    color: #fff;
    font-size: 24px;
    line-height: 29px;
}

    .content-wrap img {
        display: flex;
        margin: 0 auto;
        width: 47vw;
      width: 35vw;
        height: unset;
    }

    .content-Text {
        padding: 0 20px;
    }
  .title-modal {
  font-size: 22px;
    line-height: 29px;
  }
  .close {
        top: -7px;
    right: 10px;
  }

    .button {
        margin: 20px auto 17px auto;
    }

    .modal-content {
        width: 95%;
    }

    .content-step {
        width: 100%;
        margin: 0 auto;
    }
}