@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

body {
   
    color: #212121;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding-top: 70px;


margin: auto;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: auto;
    background: linear-gradient(315deg, rgb(235, 18, 220) 3%, rgba(60,132,206,1) 38%, #33d98c 68%, rgba(255,25,25,1) 98%);
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}



/* Estilos do cabeçalho */
header {
  background: linear-gradient(135deg, rgb(47, 48, 48) 70%, #4af0a2);
  padding: 0px 35px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  
  padding: 14px;
  color: #FFF;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    margin-top: 7px;
    margin-bottom: 0px;

}

header nav ul {
  list-style: none;
  display: flex;
}

header nav ul li {
  margin: 0 7px;
}

header nav ul li a {
  text-decoration: none;
  color: #FFF;
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #FFF;
  cursor: pointer;
}

/* Estilo do container do login */
.container {
    background: #f9f9f9;
    color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin-top: 100px;
    
}

.container h1 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: black;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

input:focus {
    border-color: #33d9b2;
    outline: none;
}

.senha-container {
    position: relative;
}

.toggle-senha {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

button {
    background: #33d9b2;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
}

button:hover {
    background: #2098e7;
}

.erro-msg {
    color: red;
    font-size: 0.9rem;
}

footer {
    margin-top: 20px;
    text-align: center;
    color: #fff;
}

a {
    text-decoration: none;
    color: #3c40c6;
    margin-top: 20px;
    padding: 12px;
    padding-top: 15px;
}

/* Responsividade */
@media (max-width: 767px) {
    .hamburger {
        display: block;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
        background-color: #2098e7b2;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        display: none;
        padding: 10px 0;
    }

    header nav ul.active {
        display: flex;
    }
}