/*
 Theme Name:   Divi Child
 Theme URI:    https://www.amfasady.cz/
 Description:  Child theme pro Divi
 Author:       AM Fasády
 Author URI:   https://www.amfasady.cz/
 Template:     Divi
 Version:      1.0.0
*/

/* Základní vzhled formuláře */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  margin-bottom: 15px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  color: #222;
  box-shadow: none;
  border-radius: 0;
}

/* Dvojice polí vedle sebe */
.wpcf7-form .form-row {
  display: flex;
  gap: 20px;
}

.wpcf7-form .form-row > * {
  flex: 1;
}

/* Tlačítko */
.wpcf7 input[type="submit"] {
  background: transparent;
  color: #fff;
  text-transform: uppercase;
  border: 2px solid #fff;
  padding: 10px 20px;
  letter-spacing: 1px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.wpcf7 input[type="submit"]:hover {
  background: #fff;
  color: #ffb600;
}
.wpcf7 input[type="tel"] {
  width: 100%;
  padding: 12px 15px;
  border: none;
  margin-bottom: 15px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  color: #222;
  box-shadow: none;
  border-radius: 0;
}

