
#fale_comigo{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    height: 100vh;
}

#fale_comigo h3{
    font-size: 1.5rem;
    text-align: center;
}

#fale_comigo h3 i{
    margin-left: 10px;
    color: #E91F26;
}


#liveAlertPlaceholder{
    position: absolute;
}

.form-container {
    width: 45%;
    background: linear-gradient(#212121, #212121) padding-box,
                linear-gradient(145deg, transparent 35%,#E91F26, #46080a) border-box;
    border: 2px solid transparent;
    padding: 32px 24px;
    font-size: 14px;
    font-family: inherit;
    color: white;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    border-radius: 16px;
    height: 70%;
  }
  
  .form-container button:active {
    scale: 0.95;
  }
  
  .form-container .form {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
    height: 100%;
  }
  
  .form-container .form-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
  }
  
  .form-container .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #717171;
    font-weight: 600;
    font-size: 1.2rem;
  }
  
  .form-container .form-group input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    background-color: transparent;
    border: 1px solid #414141;
  }
  
  .form-container .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    resize: none;
    color: #fff;
    height: 96px;
    border: 1px solid #414141;
    background-color: transparent;
    font-family: inherit;
    margin-bottom: 20px;
  }
  
  .form-container .form-group input::placeholder {
    opacity: 0.5;
  }
  
  .form-container .form-group input:focus {
    outline: none;
    border-color: #E91F26;
  }
  
  .form-container .form-group textarea:focus {
    outline: none;
    border-color: #E91F26;
  }
  
  .form-container .form-submit-btn {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    align-self: flex-start;
    font-family: inherit;
    color: #717171;
    font-weight: 600;
    width: 40%;
    background: #313131;
    border: 1px solid #414141;
    padding: 12px 16px;
    font-size: inherit;
    gap: 8px;
    margin: 8px auto;
    cursor: pointer;

    border-radius: 6px;
  }

  #captcha{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .form-container .form-submit-btn:hover {
    background-color: #fff;
    border-color: #fff;
    
  }



  .form-container .form-submit-btn:disabled{
    background-color: #fff;
    border-color: #fff;
    animation: pulse 2s linear forwards infinite;
  }


  @keyframes pulse{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.02);
    }
    100%{
        transform: scale(1);
    }
  }



  @media screen and (max-width:955px) {
    #fale_comigo{
      flex-direction: column;
      height: fit-content;
      padding: 40px 0;
      gap: 20px;
    }
    #fale_comigo h3{
      font-size: 1rem;
  }
    .form-container{
      width: 90%;
      height: 80vh;
    }

  }
  
  
  
  