/**
 * @file
 * Color functions.
 *
 * @package Functions.
 */
/* Tint. */
/* Shade. */
/**
 * @file
 * Global settings.
 *
 * @package Settings.
 */
/* Import. */
/* * @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap'); */
/* Font family. */
/* Font size. */
/* Font weight. */
/* Line height. */
/* Basic colors. */
/* Status colors. */
/* Border radius. */
/* Outline. */
/* Shadow. */
/* Spacing. */
/* Width. */
/* Breakpoints. */
/* Grid breakpoints. */
/* Grid. */
/**
 * @file
 * Form styles.
 *
 * @package Atoms.
 */
/* Use. */
/* Form. */
form {
  display: flex;
  flex-direction: column;
  margin: 1.3rem 0 0;
  row-gap: 1.5rem;
}
form > *:first-child {
  margin-top: 0;
}
form > .form-wrapper:not(.form-actions) {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
form .m-form-item--password .password-strength {
  margin-bottom: 1rem;
}

/* Fieldset. */
fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
fieldset legend, fieldset legend span {
  margin: 0;
}

.field-group-html-element {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
  gap: 1rem;
  row-gap: 2rem;
}

.field-group-fieldset legend {
  display: none;
}
.field-group-fieldset .fieldset-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}

/* Details. */
details {
  border: 1px solid #918bb1;
  border-radius: 1.5rem;
  margin: 0;
  padding: 1.3rem;
}

/* Label, legend and summary. */
label,
h4.label,
legend,
summary {
  cursor: pointer;
  display: block;
  font-size: 1.4rem;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.6rem;
  color: #1e293b;
}

/* Summary. */
summary {
  margin: -1.3rem;
  padding: 1.3rem;
}

/* Button. */
button {
  border-radius: 1.5rem;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.75;
}
button:focus {
  outline: 1px dashed currentColor;
}

/* Form. */
input,
textarea,
select {
  color: black;
  font-family: inherit;
  font-size: 1.3rem;
  line-height: 1.75;
  margin: 0;
}
input:disabled,
textarea:disabled,
select:disabled {
  cursor: not-allowed;
  filter: grayscale(100%);
  opacity: 0.6;
  pointer-events: none;
}

[type=text],
[type=password],
[type=number],
[type=date],
[type=datetime],
[type=datetime-local],
[type=month],
[type=week],
[type=email],
[type=search],
[type=tel],
[type=time],
[type=url],
[type=color],
textarea,
select {
  border: 1px solid #cbd5e1;
  border-radius: 1.5rem;
  outline: none;
  padding: 1.4rem 1.6rem;
  width: 100%;
  line-height: 1.8rem;
  color: #1e293b;
  background-color: none;
}
[type=text]:focus,
[type=password]:focus,
[type=number]:focus,
[type=date]:focus,
[type=datetime]:focus,
[type=datetime-local]:focus,
[type=month]:focus,
[type=week]:focus,
[type=email]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=time]:focus,
[type=url]:focus,
[type=color]:focus,
textarea:focus,
select:focus {
  border-color: #0062FF;
  outline: none;
}
[type=text]::-moz-placeholder, [type=password]::-moz-placeholder, [type=number]::-moz-placeholder, [type=date]::-moz-placeholder, [type=datetime]::-moz-placeholder, [type=datetime-local]::-moz-placeholder, [type=month]::-moz-placeholder, [type=week]::-moz-placeholder, [type=email]::-moz-placeholder, [type=search]::-moz-placeholder, [type=tel]::-moz-placeholder, [type=time]::-moz-placeholder, [type=url]::-moz-placeholder, [type=color]::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #6c6b7e;
}
[type=text]::placeholder,
[type=password]::placeholder,
[type=number]::placeholder,
[type=date]::placeholder,
[type=datetime]::placeholder,
[type=datetime-local]::placeholder,
[type=month]::placeholder,
[type=week]::placeholder,
[type=email]::placeholder,
[type=search]::placeholder,
[type=tel]::placeholder,
[type=time]::placeholder,
[type=url]::placeholder,
[type=color]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #6c6b7e;
}

/* Checkbox and Radio. */
[type=checkbox]:focus,
[type=radio]:focus {
  outline: 1px dashed currentColor;
  outline-offset: 1px;
}

/* Textarea. */
textarea {
  display: block;
  max-width: none;
  resize: vertical;
}

/* Select. */
select:not([multiple]) {
  height: 4.6rem;
}

.form-actions {
  margin-top: 1rem;
}

.node-form {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: 1.6rem;
}

.form-wrapper .m-form-item,
.form-wrapper table.field-multiple-table,
.form-wrapper .field-multiple-table {
  margin: 0;
}

/*# sourceMappingURL=form.css.map */