.form-container {
    width: 500px;
    margin-top: 80px;
    border-radius: 0.75rem;
    background-color: var(--cor-azul-principal);
    padding: 2rem;
    color: rgba(243, 244, 246, 1);
  }

  .logo{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logo img, h2{
    padding-top: 110px;
  }

  .logo h2{
    margin-left: 10px;
    font-weight: 700;
    color: var(--cor-vermelho);
  }

  .container{
    display: flex;
    justify-content: center;
    align-content: center;
  }

  .title {
    text-align: center;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
  }

  .form {
    margin-top: 1.5rem;
  }

  .input-group {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .input-group label {
    display: block;
    color: rgb(250, 250, 250);
    margin-bottom: 4px;
  }

  .input-group input {
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid rgb(255, 255, 255);
    outline: 0;
    background-color: rgb(226, 235, 245);
    padding: 0.75rem 1rem;
    color: rgb(0, 0, 0);
  }

  .input-group input:focus {
    border-color: var(--cor-vermelho);
  }

  .signup a {
    color: rgba(243, 244, 246, 1);
    text-decoration: none;
    font-size: 14px;
  }

  .signup a:hover {
    text-decoration: underline rgb(255, 255, 255);
  }

  .sign {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 24%;
    width: 50%;
    background-color: var(--cor-vermelho);
    padding: 0.75rem;
    text-align: center;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
  }

  .social-message {
    display: flex;
    align-items: center;
    padding-top: 1rem;
  }

  .line {
    height: 1px;
    flex: 1 1 0%;
    background-color: rgba(55, 65, 81, 1);
  }

  .social-message .message {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgba(156, 163, 175, 1);
  }

  .social-icons {
    display: flex;
    justify-content: center;
  }

  .social-icons .icon {
    border-radius: 0.125rem;
    padding: 0.75rem;
    border: none;
    background-color: transparent;
    margin-left: 8px;
  }

  .social-icons .icon svg {
    height: 1.25rem;
    width: 1.25rem;
    fill: #fff;
  }

  .signup {
    text-align: center;
    font-size: 0.75rem;
    line-height: 1rem;
    color: rgba(156, 163, 175, 1);
  }

  @media (max-width: 1440px) {

    .form-container {
        width: 500px;
        margin-top: 80px;
        padding: 1rem;
    }

    .logo img, .logo h2 {
        padding-top: 20px;
    }

    .title {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .form {
        margin-top: 1rem;
    }

    .input-group {
        margin-top: 0.5rem;
    }

    .input-group input {
        padding: 0.5rem;
    }

    .sign {
        margin-left: 0;
        width: 100%;
    }

    .social-message {
        flex-direction: column;
    }

    .social-message .message {
        padding: 0.5rem 0;
    }

    .social-icons .icon {
        margin: 0 4px;
    }
  }

  @media only screen and (max-width: 780px) {
    .form-container{
      margin-bottom: 15px;
    }

    .logo{
      margin-top: 30px;
    }

    .logo img{
      width: 100px;
    }

    .logo h2{
      font-size: 22px;
    }
  }