.tychon-lic-gen-form input[type="text"],
.tychon-lic-gen-form input[type="email"]{
  width: 100%;
  max-width: 420px;
  padding: 6px 8px;
  box-sizing: border-box;
}

/* Datepicker dropdown container */
.tychon-lic-gen-form .tychon-date-field {
  max-width: 420px;
  position: relative;
}
.tychon-lic-gen-form .tychon-date-dropdown {
  display: none; /* shown via JS */
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 8px;
  width: 350px;
}

/* Minimal jQuery UI datepicker styling so it looks decent without a theme.
   Apply globally to cover both inline (inside the form) and popup (#ui-datepicker-div appended to body). */
.ui-datepicker,
#ui-datepicker-div {
  background: #fff;
  border: 1px solid #ccd0d4;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 6px;
  border-radius: 4px;
  font-size: 14px;
  width: 350px;
}
/* Ensure popup sits above surrounding content */
#ui-datepicker-div {
  z-index: 99999 !important;
}
.ui-datepicker .ui-datepicker-header {
  background: #f6f7f7;
  border: 1px solid #e2e4e7;
  border-radius: 3px;
  padding: 6px;
  margin-bottom: 6px;
}
.ui-datepicker .ui-datepicker-title select { /* month/year dropdowns */
  margin: 0 3px;
}
.ui-datepicker table {
  width: 100%;
  border-collapse: collapse;
}
.ui-datepicker th {
  font-weight: 600;
  color: #50575e;
  padding: 4px 2px;
}
.ui-datepicker td {
  padding: 0;
}
.ui-datepicker td a,
.ui-datepicker td span {
  display: block;
  text-align: center;
  padding: 6px 0;
  border: 1px solid transparent;
  border-radius: 3px;
  color: #1d2327;
  text-decoration: none;
}
.ui-datepicker td a:hover {
  background: #eaf2fa;
  border-color: #c5d9ed;
}
.ui-datepicker .ui-state-active {
  background: #2271b1 !important;
  color: #fff !important;
  border-color: #1e5f95 !important;
}

.tychon-lic-gen-form button{
  background:#0073aa;
  color:#fff;
  border:none;
  padding:8px 14px;
  border-radius:3px;
  cursor:pointer;
}
.tychon-lic-gen-form button:hover{
  background:#006799;
}
