body{
    background-color: #3E3E3E;
}

/*Forms*/

.ideas{
    margin-top: 20px !important;
    font-size: 16px !important;
}

#form {
    padding: 32px 32px 32px 32px;
    width: 70%;
}

form{
    display: flex;
    gap:12px;
    align-items: center;
}

/*inputs, selects, btn*/
input, select, label, textarea {
    font-family: 'Poppins', Arial, Helvetica;
}

input[type=text], input[type=number]{
    width: 100%;
    height: 56px;
    font-size: 18px;
    border-radius: 6px;
    background-color: #FACE2D;
    border: 2px solid rgba(0, 0, 0, 0);
}

select{
    height: 56px;
    width: 100%;
    font-size: 18px;
    border-radius: 6px;
    background-color: #FACE2D;
    border: 2px solid rgba(0, 0, 0, 0);
    color: #000;
    /*margin-bottom: 32px;*/
}
.frames{
    
        /*width: 100px !important;*/
        margin: 16px 0px 16px 0px !important;
      box-sizing: border-box;
}

/*hovers*/

input[type=text], input[type=number]:hover{
    transition: all ease 0.2s;
    background-color: #FAC62E;
}

select:hover{
    transition: all ease 0.2s;
    background-color: #FAC62E;
}

/*Texts*/

h1{
    color: white;
    margin-top: 0;
}

label{
    font-size: 24px;
    color: white;
    padding-right:  9px;
}

p{
    margin-top: 42px;
    margin-bottom: 42px;
    font-size: 18px;
    color: white;
}

hr {
    border: 0;
    height: 2px;
    background-image: linear-gradient(to right, transparent, #CCC, transparent);  
  }
/*CHECKBOX CUSTOM*/
/* The container */
.container {
    display: block !important;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: #FACE2D;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .checkboxes{
    display: flex;
    justify-content: center;
}
.textprompt{
    color: white !important;
}

.textprompt h1 {
    margin-top: 0;
}

.textprompt p, .textprompt h3 {
    color: #FFF !important;
    line-height: 32px;
}

.textprompt h3 {
    margin-top: 0px;
}

.textprompt li {
    margin: 32px 0;
}

@media screen and (max-width: 768px){	
    .frames{
    
        width: 100% !important;

    
}
    .checkboxes{
        display: flex;
        justify-content: center;
        margin-top: 12px;
        margin-bottom: 12px;
    }
    .container, label{
        display: inline;
        padding-right: 9px;
    }
    .ideas {
        margin-top: 20px !important;
        font-size: 16px !important;
    }

    form{
        display: block;
        gap:5px;
        align-items: center;
    }

    input[type=text]{
        height: 56px;
        font-size: 18px;
        border-radius: 0px;
        border: 2px solid rgba(0, 0, 0, 0);
        border-radius: 6px;
    }

    select{
        height: 56px;
        width: 100%;
        font-size: 18px;
        border:2px solid rgba(0, 0, 0, 0);
        margin: 16px 0;
        border-radius: 6px;
    }

    h1 {
        margin-top: 0px;
        padding: 16px;
    }
    hr {
        margin-top: 20px;
        border: 0;
        height: 1px;
        background-image: linear-gradient(to right, transparent, #CCC, transparent);  
      }

}

.prompt-form form{
    margin-bottom: 64px;
}

.prompt-form form{
    display: block;
}

.prompt-form h3 {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    margin-bottom: 16px;
}
.prompt-form form textarea {
    width: 100% !important;
    margin-bottom: 16px;
    padding: 16px;
    box-sizing: border-box;
}