/* Generic form styles */
.wcg-form {
  max-width: 100%;
  margin: 0 auto;
  padding: 1.5rem 0;
}

.wcg-form .form-row {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
}

.wcg-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  letter-spacing: 0.01em;
}

.wcg-form input[type="text"],
.wcg-form input[type="email"],
.wcg-form input[type="password"],
.wcg-form select,
form textarea {
  width: 100%;
  padding: 0.65rem 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid #cfd8dc;
  border-radius: 4px;
  background: #fafbfc;
  font-size: 1rem;
  color: #222;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.wcg-form input[type="text"]:focus,
.wcg-form input[type="email"]:focus,
.wcg-form input[type="password"]:focus,
.wcg-form select:focus,
.wcg-form textarea:focus {
  border-color: #0092d4;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,146,212,0.08);
  background: #fff;
}

.wcg-form button,
.wcg-form input[type="submit"] {
  background: #0092d4;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,146,212,0.08);
}

.wcg-form button:hover,
.wcg-form input[type="submit"]:hover {
  background: #0092d4;
}

.wcg-form #wcg-contact-form-status {
  margin-top: 1rem;
  font-size: 1rem;
  color: #0092d4;
  min-height: 1.2em;
}

.wcg-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 1L8 8L15 1' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.6em;
  padding-right: 2.5em;
}

.wcg-form textarea {
  min-height: 120px;
  resize: vertical;
}

.wcg-form input:disabled,
.wcg-form button:disabled,
.wcg-form textarea:disabled,
.wcg-form select:disabled {
  background: #f1f1f1;
  color: #aaa;
  cursor: not-allowed;
  border-color: #e0e0e0;
}

@media (max-width: 600px) {

    .wcg-form .form-row {
        margin-left: 0;
        margin-right: 0;
        flex-direction: column;
    }

    .wcg-form .form-group.col-md-6 {
        padding-left: 0;
        padding-right: 0;
    }

    .wcg-form input,
    .wcg-form textarea {
        font-size: 1em;
        padding: 0.55rem 0.8rem;
    }
    .wcg-form select {
        font-size: 1em;
        padding: 0.55rem 2.5em 0.55rem 0.8rem;
    }
    .wcg-form button,
    .wcg-form input[type="submit"] {
        width: 100%;
        padding: 0.75rem 0;
    }
}
