*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 50%;
    margin: auto;
}
.container h1 {
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(93deg, #FF9800 40%, #FF5722 60% );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
}

#username {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
    justify-content: space-between;
}

.nameLabel {
    width: 100%;
    color: #FF5722;
    margin-bottom: 5px;
}
.firstName {
    width: 45%;
}
.lastName {
     width: 45%;
}

#username input {
    width: 100%;
    outline: 0;
    border: 0;
    padding: 10px;
    box-shadow: 0 0 10px 1px #e5e5e5;
    margin-bottom: 10px;
}

#username p {
    color: #4b4b4b;
    font-size: 13px;
}

/* order id */
#order_id, #amount_id, #message_id {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.order_label, .amount_label, .message_label {
    width: 100%;
    color: #FF5722;
    margin-bottom: 5px;
}
.order_label span {
    color: #4b4b4b;
    font-size: 10px;
}
.order_input, .amount_input, .message_input {
    width: 100%;
}
.order_input input, .amount_input input, .message_input textarea {
    width: 100%;
    outline: 0;
    border: 0;
    padding: 10px;
    box-shadow: 0 0 10px 1px #e5e5e5;
    margin-bottom: 5px;
    border-radius: 5px;
}

.order_amount {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#order_id, #amount_id {
    width: 45%;
} 


/* Button Submit */

div.button {
    text-align: center;
}
div.button button {
    border: 1px solid #FF5722;
    outline: none;
    font-size: 16px;
    padding: 8px 20px;
    border-radius: 5px;
    color: #fff;
    background: linear-gradient(90deg, #dc942e, #FF5722);
    cursor: pointer;
}

div.button button:hover {
    background: #fff;
    color: #FF5722;
}


@media (max-width: 991px){
    .container h1 {
        font-size: 25px;
      }
}

@media  (max-width: 767px){
  .container {
    width: 90%;
    padding: 1rem 0.5rem;
  }

  .container h1 {
    font-size: 28px;
  }

    
}

@media screen and (max-width: 576px) {
    .container h1 {
        font-size: 22px;
    }
    .nameLabel, .order_label, .amount_label, .message_label {
        font-size: 14px;
    }
    #order_id, #amount_id {
        width: 100%;
    } 

}