*{
    font-family: 'Poppins', sans-serif;
    margin: 0 auto;
    padding: 0;

}

  body {
      background: #ede9e5;
      color: #ffffff;
      overflow-x: hidden;
  }
 header{
    display: flex;
    background-color: #044189;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.063rem solid white;
 }

 .login li{
    display: inline-block;
    margin: 20px;
    right: 70px;
 }



 .login li:hover{
    color:#7070e7;
    transition: 0.3s ease-in-out;
 }



 .login a{
    color: #fff;
    text-decoration: none;
 }


 
 .titulo{
    position: relative;
    left: 20px;
    font-size: 27px;
    display: flex;
    align-items: center;
 }

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #0a0f1d;
    color: #fff;
    border-bottom: 1px solid #444;
  }
.form-group {
        height: 4vh;
        display: flex;
        text-align: left;
        justify-content: left;
        margin-bottom: 3.1%;
        margin-top: 2.4%;
        }

        input {
          margin-right: 36%;
        }

        label {
            display: flex;
            margin-bottom: 8px;
            color: #333;
            font-weight: 600;
            font-size: 19px;
            width: 18vh;
            align-items: center;
            margin-left: 37%;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="button"],
        textarea,
        select {
            width: 10%;
            padding: 4px 10px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.3s ease;  
            font-family: inherit;
        }
                h1 {
            margin-top: 10%;
            color: #333;
            margin-bottom: 25px;
            font-size: 28px;
            text-align: center;
        }

                textarea {
            resize: vertical;
            min-height: 120px;
        }

        button {
            width: 20%;
            padding: 16px;
            background: #044189;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: flex;
        }

        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        button:active {
            transform: translateY(0);
        }

        .success-message {
            display: none;
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #c3e6cb;
        }

        .success-message.show {
            display: block;
        }

         
     @media (max-width: 768px) {

      header{
    flex-direction: column;
    align-items: center;
    justify-content: center;
             }
     .container {
        padding: 15px;
    }

    .form-group {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin-bottom: 20px;
    }

    label {
        text-align: left;
        width: 100%;
        font-size: 17px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        width: 100%;
    }

    button {
        width: 100%;
        max-width: 400px;
        margin-top: 95px;
    }

    h1 {
        font-size: 26px;
        margin-top: 30px;
    }
}

/* RESPONSIVIDADE PARA CELULAR */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 22px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 18px;
        gap: 5px;
    }

    label {
        font-size: 14px;
        margin-bottom: 5px;
        color: #555;
        visibility: hidden;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        font-size: 16px;
        padding: 12px;
    }

    button {
        width: 90%;
        padding: 14px;
        font-size: 16px;
        margin-top: 70px;
        margin-bottom: 20px;
    }

    .success-message {
        font-size: 14px;
        padding: 12px;
    }
}