body{
    display: flex;
    justify-content: center;
}
.form {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 0.75rem;
    background-color: #fff;
    color: rgb(97 97 97);
    box-shadow: 20px 20px 30px rgba(0, 0, 0, .05);
    width: 22rem;
    background-clip: border-box;
    font-family: Helvetica !important;
    width: 500px;
  }
  
  .inputs {
    padding: 2rem;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    min-height: 400px;
  }

  .inputs select , .inputs input {
    font-size: 16px;
    padding: 5px;
    resize: none;
  }
  
  .inputs p {
    margin: 0;
  }
  
  .inputs textarea {
    width: 430px;
    
    overflow: hidden;
    resize: none;
  }


  .sigin-btn {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    line-height: 1rem;
    text-align: center;
    padding: .75rem 1.5rem;
    background-color: #306EAC;
    background-image: linear-gradient(to top right,#306EAC,#306EAC);
    border-radius: 0px 20px 0px 20px;
    width: 100%;
    outline: 0;
    border: 0;
    color: #fff;
    cursor: pointer;
  }

  .sigin-btn:hover {
    background-color: #ffffff;
    background-image: linear-gradient(to top right,#ffffff,#ffffff);
    color: #306EAC;
  } 


#gratitude {
    display: none;
}


#loader {
    display: none;
}

#respuesta {
    display: none;
    font-family: Helvetica, sans-serif;
}


.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: transparent;
    border: 3px solid rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 150px;
    font-family: sans-serif;
    font-size: 20px;
    color: #306EAC;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px #306EAC;
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
}

.loader::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top: 3px solid #306EAC;
    border-right: 3px solid #306EAC;
    border-radius: 50%;
    animation: animateC 2s linear infinite;
}

.loader span {
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    left: 50%;
    width: 50%;
    height: 4px;
    background: transparent;
    transform-origin: left;
    animation: animate 2s linear infinite;
}

.loader span::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #306EAC;
    top: -6px;
    right: -8px;
    box-shadow: 0 0 20px 5px #306EAC;
}

@keyframes animateC {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate {
    0% {
        transform: rotate(45deg);
    }

    100% {
        transform: rotate(405deg);
    }
}

@media (max-width:500px) {
    .form {
        width: 300px;
    }

    .inputs textarea {
        width: 230px;
    }

    lord-icon {
        width: 100px;
        height: 100px;
    }
}

