*
{
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}
html
{
    height: 100%;
}
body
{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: white;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    /* width: 100h; */
}

.emblema
{
    position: fixed;
    width: 10%;
    max-width: 100px;
    min-width: 70px;
    opacity: 60%;
    top: 20px;
    left: 20px;
    /* bottom: 20px; */
    z-index: 99;
    transition: all 0.2s;
}
.emblema:hover
{
    opacity: 100%;
}

.container
{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.container form
{
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.InputBox
{
    width: 50%;
    margin: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: white;
}

.InputBox span
{
    position: absolute;
    color: black;
    left: 0%;
    padding: 20px;
    pointer-events: none;
    font-size: 1em;
    text-transform: uppercase;
}

.InputBox input,
.InputBox textarea
{
    position: relative;
    width: 100%;
    height: 45px;
    background: transparent;
    border: 2px solid #333;
    border-radius: 10px;
    outline: none;
    padding: 20px;
    color: black;
    font-size: 20px;
}
.InputBox textarea
{
    width: 100%;
    height: 100px;
}
.OneLineInputBox
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 52.5%;
    background-color: white;
}
.InputBox select
{

    position: relative;
    height: 50px;
    width: 100%;
    border-radius: 10px;
    padding-left: 20px;
    font-size: 20px;
    color: #333;
    outline: none;
    border: none;
    border: 2px solid #333;
    background-color: #fff;
}

.InputBox span
{
    transition: all 0.2s ease-in-out;
    border-radius: 10px;
}

.InputBox input:valid ~ span,
.InputBox input:focus ~ span
{
    transform: translateX(20px) translateY(-25px);
    font-size: 0.75rem;
    padding: 0 10px;
    background-color: #007bff;
    color: white;
    border-radius: 10px;
}
.InputBox label
{
    position: absolute;
    color: white;
    top: -15px;
    left: 15px;
    font-size: 1.1rem;
    padding: 0 10px;
    background-color: #007bff;
    border-radius: 10px;
}

input[type="submit"] {
    /* padding: 10px 20px; */
    width: 150px;
    height: 50px;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    font-size: 1.6em;
    cursor: pointer;
    position: absolute;
    right: 0;
    transition: all 0.3s ease-in-out;
    padding: 5px;
  }
  input[type="submit"]:hover {
    background-color: #fff;
    color: #333;
    border: 2px solid #333;
  }
  

  .waveBorder
  {
    position: absolute;
    color: white;
    text-shadow: -1px -1px 0 rgb(0, 0, 0), -1px 1px rgb(0, 0, 0), 1px -1px rgb(0, 0, 0), 1px 1px rgb(0, 0, 0);
  }


  .waveWater
  {
    position: absolute;
    color: #007bff;
    animation: wave 3s ease-in-out infinite;
  }

    .title
    {
        font-size: 60px;
        top: 10%;
    }

  @keyframes wave
  {
      0%, 100%
      {
          clip-path: polygon(
              0 47%,
              10% 48%,
              33% 54%,
              54% 60%,
              70% 61%,
              84% 59%,
              100% 52%,
              100% 100%,
              0% 100%
          );
      }
      50% {
          clip-path: polygon(0% 60%, 15% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
      }
  }


.right-box
{
    width: 30%;
    right: 0;
    height: 100%;
    position: relative;
    background-color: #1abc9b;
}


@media (max-width: 1200px) {
    .title
    {
        font-size: 100px;

    }
    .InputBox
    {
        width: 90%;
    }
    .OneLineInputBox
    {
        width: 95%;
    }
    
    .InputBox input,
    .InputBox textarea
    {
        width: 100%;
        height: 85px;
        font-size: 40px;
    }
    .InputBox textarea
    {
        width: 100%;
        height: 100px;
    }
    .InputBox span
    {
        font-size: 2rem;
        font-weight: 400;
        opacity: 60%;
    }

    .InputBox input:valid ~ span,
    .InputBox input:focus ~ span
    {
        transform: translateX(20px) translateY(-140%);
        opacity: 100%;
        font-size: 1.7rem;
        padding: 0 10px;
        background-color: #007bff;
        color: white;
        border-radius: 10px;
    }

    .InputBox select
    {

        position: relative;
        height: 85px;
        width: 100%;
        border-radius: 10px;
        padding-left: 20px;
        font-size: 2rem;
        color: #333;
        outline: none;
        border: none;
        border: 2px solid #333;
        background-color: #fff;
    }
    .InputBox label
    {
        font-size: 1.7rem;
    }
    .InputBox textarea
    {
        font-size: 1.7rem;
        height: 230px;
    }
    input[type="submit"] 
    {
        margin-top: 15%;
    }
}
