/* :root {
      --accent: #F18260;
      --purple: #252431;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background: #eee;
      color: var(--purple);
      padding: 10% 5%;
      font-family: system, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      line-height: 1.4;
    } */

    .form-container {
      position: relative;
      border-radius: 6px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      width: 100%;
      margin: 0 auto;
      margin-bottom: 2rem;
      font-family: 'Rubik', sans-serif;
      font-size: 0.8em;

    }

    input, button {
      appearance: none;
      border: none;
      font-size: inherit;
      background: #eee;
      border-radius: 3px;
      padding: 0 1rem;
    }

    input {
      margin-bottom: 0.3em;
      line-height: 2.63em;
    }

    input:focus {
      outline: 1px solid var(--accent);
    }

    button {
      color: #eee;
      cursor: pointer;
      background-color: #cc1122;
    }

    button:hover {
      color: #fff;
    }

    .is-hidden {
      display: none !important;
    }

    a {
      display: block;
      width: max-content;
      margin: 0 auto;
      color: var(--accent);
      text-decoration: none;
      margin-bottom: 0.5rem;
    }

    @keyframes rotate {
     100% { transform: rotate(360deg); }
    }

    @keyframes dash {
     0% { stroke-dasharray: 1,200; stroke-dashoffset: 0; }
     50% { stroke-dasharray: 89,200; stroke-dashoffset: -35; }
     100% { stroke-dasharray: 89,200; stroke-dashoffset: -124; }
    }

    .loading {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .loading-spinner {
      width: 50px;
      height: 50px;
    }

    .loading-spinner svg {
      position: relative;
      animation: rotate 2s linear infinite;
      height: 50px;
      width: 50px;
    }

    .loading-spinner circle {
      stroke: var(--accent);
      stroke-dasharray: 1,200;
      stroke-dashoffset: 0;
      stroke-linecap: round;
      animation: dash 1.5s ease-in-out infinite;
    }




    /* Reset Select */
    select {
      -webkit-appearance: none;
      -moz-appearance: none;
      -ms-appearance: none;
      appearance: none;
      outline: 0;
      box-shadow: none;
      border: 0 !important;
      background: #eee;
      background-image: none;
    }

    .selectWrap {
      position: relative;
      display: inline;
      height: 3em;
      line-height: 2.63em;
      background: transparent;
      overflow: hidden;
      border-radius: .25em;
    }
    .selectWrap label
    {
      color: #aaa;
      padding: 7px 5px 8px;
      font-size: 1em;
      font-weight: normal;
      float: left;
      width:auto;
    }

    select
    {
      height: 100%;
      margin: 0;
      padding: 0 0 0 1rem;
      color: #aaa;
      cursor: pointer;
      border-radius: 3px;
    }

    select::-ms-expand {
      display: none;
    }

    /* Arrow */
    .select::after {
      content: '\25BC';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      padding: 0 1em;
      background: #34495e;
      pointer-events: none;
    }
    /* Transition */
    .select:hover::after {
      color: #f39c12;
    }
    .select::after {
      -webkit-transition: .25s all ease;
      -o-transition: .25s all ease;
      transition: .25s all ease;
    }

    button[type=submit]{
      margin:auto;
      width:13%;
      line-height: 2.63em;
    }

    input[name=name] {
      width:50.5%;
    }

    input[name=LAT], input[name=LON] {
      width:24.4%;
    }

    select[name=TypeOfPlace] {
      width:19%;
    }

    select[name=SpecificationTypeOfPlace] {
      width:23%;
    }

    input[name=Notes] {
      width: 25%;
    }

    input[name=YourName] {
      width: 18.7%;
    }

    p.submitDisclaimer {
      color: #999;
      margin-top: 10px;
    }
