
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; 
}



.container {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    justify-content: space-between;
}

.form-container {
    flex: 1;
    padding: 50px;
    background-color: #faf8f8; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    margin: 40px;
}

.row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.col {
    width: 48%;
}

.full-width {
    width: 100%;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #2b3c1c;
    font-weight: 550;
}


input, textarea {
    width: 100%;
    padding: 10px;
    border: 1.5px solid #242c4c;
    border-radius: 0px;
    font-size: 14px;
    color: #1c243c;
    outline: none;
}

textarea {
    height: 80px;
}

button {
    background-color: #bca474;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #a49058;
}

.content-create-button{
    display: flex; 
    justify-content: center; 
    margin-top: 20px;
}
.create-button{
    width: 350px; 
    padding: 15px; 
    font-weight: bold; 
    border-radius: 0;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1c243c;
    
}




.usa-flag {
  width: 15px; 
  height: auto;
  margin-left: 8px; 
  vertical-align: middle; 
}




.delivery-options-sub{
    margin-top: 20px;
    display: flex; 
    justify-content: center; 
    margin-bottom: 10px;
}

.percentaje-text{
    justify-content: center; 
    display: flex;
}

.sub-textarea-extra{
display: flex;
justify-content: center;
margin-left: 10%;
margin-right: 10%;
margin-top: 20px;
text-align: center;
}

.delivery-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 10px;
  font-weight: 500;
}

.custom-checkbox input[type="checkbox"] {
  display: none; 
}


.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 1px solid #1c243c;
  border-radius: 0px;
  margin-right: 10px;
  position: relative;
  cursor: pointer;
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-custom {
  background-color: #242c4c;
}

.checkbox-custom::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.custom-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
  opacity: 1;
}


@media (max-width: 768px) {
   

    .form-container {
        margin: auto;
        max-width: 100%;
        padding: 20px;
    }

    .custom-checkbox {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
}
