﻿h2 {
  margin: 15px 0 30px;
  font-weight: 600;
  text-shadow: 2px 3px 2px gray;
  font-size: clamp(25px, 3vw, 34px); }

.inputEntity {
  display: flex;
  margin: 10px; }
  .inputEntity label {
    width: 220px;
    margin-right: 50px;
    font-size: clamp(15px, 1vw, 30px); }
  .inputEntity .customSelect, .inputEntity .inputParent {
    width: 100%; }
  .inputEntity .textareaParent {
    width: 100%; }
    .inputEntity .textareaParent textarea {
      min-height: 50px;
      max-height: 200px; }
  .inputEntity .customSelect select {
    width: 100%;
    text-indent: 5px; }

.formActions a {
  cursor: pointer;
  font-size: clamp(15px, 1vw, 30px);
  text-align: center;
  display: inline-block;
  height: clamp(35px, 4vw, 40px);
  line-height: clamp(35px, 4vw, 40px);
  font-weight: 700;
  color: #282828;
  border: 2px solid #282828;
  border-radius: 0 0 15px 0;
  width: 50%;
  align-items: center;
  min-width: 250px;
  transition: all 300ms ease;
  padding: 0 18px;
  margin-top: 25px;
  text-decoration: none !important;
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1; }
  .formActions a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: #481e72;
    transition: all 0.3s ease; }
  .formActions a:hover:after {
    width: 100%;
    left: 0; }
  .formActions a:hover {
    color: white; }
