/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */


.flex-container {
    /* list-style: none;
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center; */
}

.wrap {
    /* -webkit-flex-wrap: wrap;
    flex-wrap: wrap; */
}

.form-row {
    /* display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 25px; */
}

.label-toku {
    /* width: 40% !important;color: #808080 !important; */

}

.input-toku {
    /* width: 60% !important;border-color: #808080 !important; */
}

.font-color-toku {
    /* color: #808080 !important; */

}

/* Estilos del formulario Toku */
#toku-formulario {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 2px solid #eee;
    border-radius: 8px;
    background: #fff;
  }
  
  #toku-formulario h2 {
    color: #EC761D;
    margin-bottom: 15px;
  }
  
  #toku-formulario label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
  }
  
  #toku-formulario input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  #toku-formulario button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background: #EC761D;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
  }
  
  #toku-formulario button:hover {
    background: #d75a00;
  }
  