/*
 Theme Name:     Bygge Child Theme
 Theme URI:      https://www.codeless.co/bygge
 Description:    Bygge Child Theme
 Author:         Codeless Themes
 Author URI:     https://www.codeless.co
 Template:       bygge
 Version:        1.0.0
*/

 
/* =Theme customization starts here
------------------------------------------------------- */
/* Force CF7 newsletter in one row */
.wpcf7 form .cf7-newsletter-line{
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
  flex-wrap:nowrap !important;
}

/* Remove CF7 auto p margin if any */
.wpcf7 form .cf7-newsletter-line p{ margin:0 !important; }
.wpcf7 form .cf7-newsletter-line br{ display:none !important; }

/* Force input & submit to NOT be full width */
.wpcf7 form .cf7-newsletter-line .wpcf7-form-control-wrap{
  flex:1 1 auto !important;
  width:auto !important;
  display:block !important;
}

.wpcf7 form .cf7-newsletter-line input[type="email"]{
  width:100% !important;
  max-width:none !important;
  height:54px !important;
  border-radius:0 !important;         /* screenshot style */
  border:0 !important;
  outline:none !important;
}

/* Button */
.wpcf7 form .cf7-newsletter-line input[type="submit"]{
  width:auto !important;
  max-width:none !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  height:40px !important;
  padding:0 18px !important;
  border-radius:0 !important;         /* screenshot style */
  margin:0 !important;
}

/* Mobile: stack */
@media (max-width: 520px){
  .wpcf7 form .cf7-newsletter-line{
    flex-direction:column !important;
    align-items:stretch !important;
  }
  .wpcf7 form .cf7-newsletter-line input[type="submit"]{
    width:100% !important;
    height:50px !important;
  }
}

