.container {
  max-width: 1300px;
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr minmax(175px, 375px);
  gap: 25px;
}

.col-one, .col-two {
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 0;
  padding: 15px;
  background: #ffffff;
  height: fit-content;
}

.sessions.new .content {
  display: flex;
  align-items: center;
  justify-content: center;
  & form {
    width: 600px;
  }
}

.list-filters {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 25px;
  margin-bottom: 1em;
  & .form-group {
    margin-bottom: 0;
  }
  & input {
    min-width: 100%;
  }
}