@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Ubuntu:ital,wght@0,500;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Yeseva+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,638;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap");
:root {
  --body: rgb(255, 255, 255);
  --font-size: 16px;
}

@font-face {
  font-family: "primary";
  src: url("../../font/Roboto-Bold.woff") format("woff");
  font-weight: bold;
}
:root {
  --fuente--primar:"Teko", sans-serif;
  --font-family: "Poppins", sans-serif;
  /* --fuente--secundary:'Ubuntu', sans-serif;
   --fuente--third:'Montserrat', sans-serif;
   --fuente--title:'Playfair Display', serif;
   --fuente--title-alt:'Yeseva One', cursive;*/
}

body {
  margin: 0;
  background: var(--body);
  font-family: var(--font-family);
}

/*hr{
  width: 100%;
  margin: 20px auto;
  height: 3px;
  border:none;
  margin: 0;
  border-radius: 20px;
  //background: rgb(252,252,252);
  background: linear-gradient(90deg, rgba(252,252,252,1) 4%, rgba(151,147,233,1) 51%, rgba(241,75,54,1) 100%);  
}*/
h2, h1, h3 {
  margin: 0;
}

P {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #051441;
  font-size: 1em;
  font-weight: 500;
}

.titulo {
  flex-direction: column;
  color: #051441;
}
.titulo hr {
  width: 35px;
  height: 4px;
  background: #FFB703;
  border-style: solid;
  border: none;
}

/*MIXIN PARA BANNER NOTIFICACIONES
@mixin notification {
  padding: 15px;   
 // background: $color-white;
  font-size: 0.99em;
  background-color: rgba($color-white, .7);
  border-radius: 10px;    
  font-family: var(--fuente--secundary);
  box-shadow: -2px 24px 21px -16px rgba(40,106,136,0.40);

}
//mixin para de degradados con  transition 
@mixin gradient-animation( $start, $end, $transTime ){
  background-size: 100%;
  background-image: linear-gradient($start, $end);
  position: relative;
  z-index: 100;
  &:before {
    background-image: linear-gradient($end, $start);
    content: '';    
    display: block;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    width: 100%;
    z-index: -100;
    transition: opacity $transTime;
  }
  &:hover {
     &:before {
       opacity: 1; 
     }
  }
}*/
.modalContainer {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modalContainer .modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid lightgray;
  border-top: 10px solid #58abb7;
  width: 60%;
}

.modalContainer .close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modalContainer .close:hover,
.modalContainer .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.grid {
  display: grid;
  gap: 20px;
  width: 100%;
  grid-template-columns: repeat(12, 1fr);
  overflow: hidden;
}

/* Tamaño SMOLL - CELULARES */
.col-1 {
  grid-template-columns: repeat(1, 1fr);
}

.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.col-5 {
  grid-template-columns: repeat(5, 1fr);
}

.col-6 {
  grid-template-columns: repeat(6, 1fr);
}

.col-7 {
  grid-template-columns: repeat(7, 1fr);
}

.col-8 {
  grid-template-columns: repeat(8, 1fr);
}

.col-9 {
  grid-template-columns: repeat(9, 1fr);
}

.col-10 {
  grid-template-columns: repeat(10, 1fr);
}

.col-11 {
  grid-template-columns: repeat(11, 1fr);
}

.col-12 {
  grid-template-columns: repeat(12, 1fr);
}

@media only screen and (min-width: 576px) {
  .sm-col-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .sm-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .sm-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .sm-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .sm-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .sm-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .sm-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .sm-col-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .sm-col-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .sm-col-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .sm-col-11 {
    grid-template-columns: repeat(11, 1fr);
  }
  .sm-col-12 {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media only screen and (min-width: 768px) {
  .med-col-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .med-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .med-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .med-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .med-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .med-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .med-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .med-col-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .med-col-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .med-col-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .med-col-11 {
    grid-template-columns: repeat(11, 1fr);
  }
  .med-col-12 {
    grid-template-columns: repeat(12, 1fr);
  }
  .med-span-1 {
    grid-column: span 1;
  }
  .med-span-2 {
    grid-column: span 2;
  }
  .med-span-3 {
    grid-column: span 3;
  }
  .med-span-4 {
    grid-column: span 4;
  }
  .med-span-5 {
    grid-column: span 5;
  }
  .med-span-6 {
    grid-column: span 6;
  }
  .med-span-7 {
    grid-column: span 7;
  }
  .med-span-8 {
    grid-column: span 8;
  }
  .med-span-9 {
    grid-column: span 9;
  }
  .med-span-10 {
    grid-column: span 10;
  }
  .med-span-11 {
    grid-column: span 11;
  }
  .med-span-12 {
    grid-column: span 12;
  }
}
@media only screen and (min-width: 992px) {
  .lg-col-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .lg-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .lg-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .lg-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .lg-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .lg-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .lg-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .lg-col-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .lg-col-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .lg-col-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .lg-col-11 {
    grid-template-columns: repeat(11, 1fr);
  }
  .lg-col-12 {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .xl-col-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .xl-col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .xl-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .xl-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .xl-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .xl-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .xl-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .xl-col-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .xl-col-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .xl-col-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .xl-col-11 {
    grid-template-columns: repeat(11, 1fr);
  }
  .xl-col-12 {
    grid-template-columns: repeat(12, 1fr);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Import Google font - Poppins */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white-color: #fff;
  --blue-color: #4070f4;
  --grey-color: #707070;
  --grey-color-light: #aaa;
}

body {
  background-color: #e7f2fd;
  transition: all 0.5s ease;
}

body.dark {
  background-color: #333;
}

body.dark {
  --white-color: #333;
  --blue-color: #fff;
  --grey-color: #f2f2f2;
  --grey-color-light: #aaa;
}

/* navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  z-index: 1000;
  box-shadow: 0 0 2px var(--grey-color-light);
}

.navbar_content .profile {
  padding-right: 10px;
  width: 60px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.logo_item {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-size: 22px;
  font-weight: 500;
  color: var(--blue-color);
}
.logo_item i {
  color: #051441;
}

.navbar img {
  padding-left: 10px;
  width: 100px;
  height: 55px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.search_bar {
  height: 47px;
  max-width: 430px;
  width: 100%;
}

.search_bar input {
  height: 100%;
  width: 100%;
  border-radius: 25px;
  font-size: 18px;
  outline: none;
  background-color: var(--white-color);
  color: var(--grey-color);
  border: 1px solid var(--grey-color-light);
  padding: 0 20px;
}

.navbar_content {
  display: flex;
  align-items: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
}

.navbar_content i {
  cursor: pointer;
  font-size: 20px;
  color: var(--grey-color);
}

/* sidebar */
.sidebar {
  background-color: var(--white-color);
  width: 290px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  padding: 80px 10px;
  z-index: 100;
  overflow-y: scroll;
  box-shadow: 0 0 1px var(--grey-color-light);
  transition: all 0.5s ease;
}

.sidebar.close {
  padding: 60px 0;
  width: 80px;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.menu_content {
  position: relative;
}

.menu_title {
  margin: 15px 0;
  padding: 0 20px;
  font-size: 18px;
}

.sidebar.close .menu_title {
  padding: 6px 30px;
}

.menu_title::before {
  color: var(--grey-color);
  white-space: nowrap;
}

.menu_editor::before {
  content: "OPERACIONES";
}

.menu_setting::before {
  content: "CONFIGURACIONES";
}

.sidebar.close .menu_title::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 18px;
  border-radius: 12px;
  background: var(--grey-color-light);
}

.menu_items {
  padding: 0;
  list-style: none;
}

.navlink_icon {
  position: relative;
  font-size: 22px;
  min-width: 50px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 6px;
}

.navlink_icon::before {
  content: "";
  position: absolute;
  height: 100%;
  width: calc(100% + 100px);
  left: -20px;
  -moz-columns: #010d14;
       columns: #010d14;
}

.navlink_icon:hover {
  background: var(--blue-color);
}

.sidebar .nav_link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 4px 2px;
  border-radius: 8px;
  text-decoration: none;
  color: #051441;
  white-space: nowrap;
}

.sidebar.close .navlink {
  display: none;
}

.nav_link:hover {
  color: var(--white-color);
  background: var(--blue-color);
}

.sidebar.close .nav_link:hover {
  background: var(--white-color);
}

.submenu_item {
  cursor: pointer;
  color: #4070f4;
}

.submenu .sublink {
  color: #4b4b4b;
}
.submenu .sublink:hover {
  color: var(--white-color);
  background: var(--blue-color);
}

.submenu {
  display: none;
}

.submenu_item .arrow-left {
  position: absolute;
  right: 10px;
  display: inline-block;
  margin-right: auto;
}

.sidebar.close .submenu {
  display: none;
}

.show_submenu ~ .submenu {
  display: block;
}

.show_submenu .arrow-left {
  transform: rotate(90deg);
}

.submenu .sublink {
  padding: 15px 15px 15px 40px;
}

.bottom_content {
  position: fixed;
  bottom: 60px;
  left: 0;
  width: 290px;
  cursor: pointer;
  transition: all 0.5s ease;
}

.bottom {
  position: absolute;
  display: flex;
  align-items: center;
  left: 0;
  justify-content: space-around;
  padding: 18px 0;
  text-align: center;
  width: 100%;
  color: var(--grey-color);
  border-top: 1px solid var(--grey-color-light);
  background-color: var(--white-color);
}

.bottom i {
  font-size: 20px;
}

.bottom span {
  font-size: 18px;
}

.sidebar.close .bottom_content {
  width: 50px;
  left: 15px;
}

.sidebar.close .bottom span {
  display: none;
}

.sidebar.hoverable .collapse_sidebar {
  display: none;
}

#sidebarOpen {
  display: none;
}

@media screen and (max-width: 768px) {
  #sidebarOpen {
    font-size: 25px;
    display: block;
    margin-right: 10px;
    cursor: pointer;
    color: var(--grey-color);
  }
  .sidebar.close {
    left: -100%;
  }
  .search_bar {
    display: none;
  }
  .sidebar.close .bottom_content {
    left: -100%;
  }
}
.content-footer {
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 25rem), 1fr));
  -moz-column-gap: 20px;
       column-gap: 20px;
  justify-content: flex-start;
  background: #f2f4f8;
  width: 100%;
  height: auto;
  justify-content: center;
}
.content-footer .mac_content_footer {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #fff;
  font-weight: 250;
}
.content-footer .mac_content_footer .mac_logo {
  width: 30%;
  height: 80px;
  margin: auto;
}
.content-footer .mac_content_footer .mac_logo img {
  width: 100%;
  height: 80px;
}
.content-footer .mac_content_footer p {
  padding-top: 10px;
}
.content-footer .mac_content_footer p strong {
  font-weight: 500;
}
.content-footer .mac_content_footer span {
  font-weight: 500;
  padding-bottom: 10px;
  font-size: 1.3em;
}
.content-footer .mac_content_footer li {
  text-decoration: none;
  list-style: none;
  padding: 4px;
}
.content-footer .mac_content_footer li a {
  color: #fff;
  font-weight: 300;
  opacity: 0.8;
  transition: opacity 400ms;
}
.content-footer .mac_content_footer li a:hover {
  color: #FFB703;
}
@media (min-width: 768px) {
  .content-footer .add {
    padding-top: 70px;
  }
}
.content-footer .autor {
  width: 100%;
  grid-column: 1/-1;
  text-align: center;
  color: #EDF5FF;
  padding: 20px;
  border-top: solid 1px #EDF5FF;
}
.content-footer .autor p {
  font-weight: 300;
  font-size: 0.8em;
}

.mac_section_servicio_home {
  padding-top: 50px;
  width: 100%;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #f2f4f8;
  position: relative;
}
.mac_section_servicio_home::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../public/img/home_mac_ingenieros.jfif") center/cover;
  opacity: 0.8;
}
.mac_section_servicio_home h1 {
  font-weight: 600;
}
@media (min-width: 780px) {
  .mac_section_servicio_home h1 {
    font-size: 40px;
    font-weight: 700;
  }
}
@media (min-width: 780px) {
  .mac_section_servicio_home p {
    width: 70%;
    font-size: 20px;
  }
}
.mac_section_servicio_home h1, .mac_section_servicio_home p {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 10px;
}

.mac_home {
  width: 100%;
  padding: 30px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, #B9D2F0 -35%, #EDF5FF 50.11%, #F5FAFF 100%);
}
@media (min-width: 780px) {
  .mac_home {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 70px;
    -moz-column-gap: 70px;
         column-gap: 70px;
  }
}
.mac_home .mac_home_img {
  width: 100%;
}
.mac_home .mac_home_img img {
  width: 100%;
}
.mac_home .mac_home_text h1 {
  padding-top: 50px;
  color: #f2f4f8;
  font-weight: 600;
}
.mac_home .mac_home_text p {
  padding-top: 20px;
}

.mac_container {
  display: grid;
  justify-content: center;
  align-content: center;
  justify-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  background: linear-gradient(180deg, #001955 -3.6%, #004BCD 184.39%);
}
.mac_container .mac_container_1 {
  width: 100%;
  display: grid;
  justify-content: center;
  align-content: center;
  justify-items: center;
  row-gap: 30px;
}
@media (min-width: 780px) {
  .mac_container .mac_container_1 {
    grid-template-columns: repeat(3, 1fr);
    width: 90%;
    justify-items: center;
    justify-content: center;
  }
}
.mac_container .icon-chevron-right {
  color: #FFB703;
  padding-top: 10px;
  font-weight: 400;
}
.mac_container h1 {
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  width: 90%;
}
@media (min-width: 780px) {
  .mac_container h1 {
    grid-column: 1/-1;
  }
}
.mac_container .mac_container_card {
  width: 90%;
  display: flex;
  flex-direction: column;
  background: #EDF5FF;
  border-radius: 15px;
}
.mac_container .mac_container_card .mac_botton {
  width: 100px;
  height: 50px;
  display: inline-block;
  width: 150px;
  padding: 1rem 1rem;
  background-color: #FFB703;
  color: #051441;
  font-size: 1.2em;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  line-height: inherit;
  border-radius: 0.5rem;
  transition: transform 0.9s;
  border: 0px solid var(--color);
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 400ms;
  /*&::before{
      content: '';
      position: absolute;
      top: 0;
      width: 100%;
      height: 100%;
      background: url("../public/img/logo-mac-boton.png") center/cover;
      //opacity: 0.3; 
    }*/
}
.mac_container .mac_container_card .mac_botton:hover {
  text-decoration: inherit;
  color: #fff;
}
.mac_container .mac_container_card .mac_botton:active {
  transform: scale(0.99);
}
.mac_container .mac_container_card .mac_img {
  width: 100%;
  border-radius: 15px;
}
.mac_container .mac_container_card .mac_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.mac_container .mac_container_card h2 {
  padding: 30px;
  color: #f2f4f8;
}
.mac_container .mac_container_card hr {
  width: 85%;
  text-align: center;
  padding-left: 30px;
}
.mac_container .mac_container_card p {
  padding: 30px;
}
.mac_container .mac_container_card ul {
  padding: 30px 50px 30px 50px;
}

main {
  padding-top: 10px;
  width: 100%;
  padding-left: 90px;
}
main .container {
  padding-left: 170px;
}

div.dataTables_wrapper div.dataTables_filter {
  padding-top: 20px;
}

.content_tabla {
  margin-top: 20px;
  margin: auto;
  width: 70%;
  border-collapse: collapse;
}
.content_tabla thead tr {
  background: #cbe5f8;
  border-collapse: collapse;
  border-spacing: 0;
}
.content_tabla thead tr th {
  padding: 8px;
  margin: auto;
  font-size: 11px;
  text-align: center;
}
.content_tabla tbody td {
  font-size: 13px;
  padding: 5px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.content_main_principal {
  display: flex;
  flex-direction: column;
}

.content_main {
  padding-left: 290px;
  display: flex;
  flex-direction: column;
}

.form_h1 {
  padding: 20px;
  width: 100%;
  padding-bottom: 20px;
  margin: auto;
  font-size: 25px;
  font-weight: 500;
}

.text_titulo {
  width: 90%;
  background-color: #ccdff8;
  margin: auto;
  padding: 10px;
  font-size: 12px;
  margin-bottom: 20px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .text_titulo {
    width: 70%;
  }
}
.text_titulo h1 {
  font-weight: 500;
  color: #162152;
  font-family: "Inter", sans-serif;
  padding-left: 20px;
}

.form_content {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: auto;
}
@media (min-width: 768px) {
  .form_content {
    width: 100%;
  }
}
.form_content form {
  width: 100%;
}
@media (min-width: 768px) {
  .form_content form {
    width: 100%;
    padding-left: 20px;
    padding-right: 20PX;
  }
}
.form_content .form_flex {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: auto;
  gap: 20px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .form_content .form_flex {
    flex-direction: row;
    padding-bottom: 30px;
  }
}
.form_content .form_flex .form_content_text {
  width: 100%;
}
.form_content .formbold-form-btn-wrapper .formbold-btn {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  border-radius: 5px;
  padding: 10px 25px;
  border: none;
  font-weight: 500;
  background-color: #32b853;
  color: white;
  cursor: pointer;
}

.formbold-form-label {
  color: #000000;
  font-weight: 520;
  font-size: 16px;
  line-height: 20px;
  display: block;
  margin-bottom: 10px;
}

.formbold-form-input {
  width: 100%;
  padding: 10px 18px;
  border-radius: 5px;
  border: 1px solid #b5c3cc;
  background: #ffffff;
  font-weight: 500;
  font-size: 16px;
  color: #33353a;
  outline: none;
  font-family: "Inter", sans-serif;
  resize: none;
}
.formbold-form-input:focus {
  border-color: #3677ee;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}/*# sourceMappingURL=style.css.map */