html {
        height: 100vh;
        width: 100vw;
        background-image: url("desktop.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        overflow: auto;
        overflow-x: hidden
        margin: 0;
        padding: 0;
}

body {
        padding: 100px 0 100px 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow-x: hidden
}

.information {
        width: 100%;
}

.text {
        background-color: #F05832;
        width: 25%;
        border-radius: 40px;
        display: flex;
        flex-direction: column;
        padding: 0 20px 0 20px;
        text-align: center;
        min-width: 400px;
}

.text p {
        color: #FFFF;
        font-weight: bolder;
        font-size: 14px;
}

.text-title {
        display: flex;
        justify-content: center;
}

.inputs {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding-top: 30px;
}

.data-input {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 18%;
        min-width: 300px;
        padding: 30px 0 30px 0;
}

.label {
        font-size: 20px;
        color: white;
        font-weight: bolder;
}

.input {
        width: 100%;
        height: 50px;
        border-radius: 40px;
        border: none;
        font-size: 15px;
}

.input:focus {
        outline: none;
}

.payment {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 25%;
        min-width: 400px;
}

.name {
        color: white;
        font-size: 20px;
        font-weight: bolder;
}

.number {
        width: 72%;
        height: 50px;
        border-radius: 40px;
        background-color: #F05832;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px 0 10px 0;
}

.thanks-div {
        height: 50px;
        border-radius: 40px;
        background-color: #F05832;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px 0 10px 0;
        padding: 0 10px 0 10px;
}

.number, .thanks-div p {
        color: white;
        font-size: 18px;
        font-weight: bolder;
}

.next {
        margin-top: 50px;
        height: 45px;
        width: 10%;
        border-radius: 40px;
        color: #F05832;
        border: none;
        background-color: #FFFF;
        font-weight: bolder;
        font-size: 20px;
        cursor: pointer;
        min-width: 200px;
        min-height: 35px;
}

.number {
        cursor: pointer;
}

.thanks-image {
        height: 120px;
}

@media (max-width: 768px) {
        html {
                background-image: url("mobile.png")
        }
        
        .text {
                width: 80%;
                font-size: 12px;
                padding: 10px;
                max-height: 400px;
                min-width: 200px;
        }
        
        .payment {
                width: 100%;
        }
        
        .inputs {
                max-height: 500px;
        }
        
        .label, .name, .number, .thanks-div p {
                font-size: 14px;
        }
        
        .input {
                height: 35px;
        }

        .data-input {
                width: 60%;
        }

        .next {
                width: 30%;
                height: 35px;
                font-size: 14px;
        }
        
        .number{
                width: 60%;
                height: 35px;
        }
        
        .thanks-div {
                height: 35px;
        }
        
        .thanks-image {
                height: 60px;
        }
}
