body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('https://unifametro.edu.br/wp-content/uploads/2024/02/fonte.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 100%;
    height: 100%;
}
body::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    background:blur(5px);
    backdrop-filter: blur(5px);
    position: fixed;
}
.menu-login {
    max-width: 400px;
    margin: 80px auto;
    padding: 32px 24px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    text-align: center;
}
.menu-login img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #007bff;
    margin-bottom: 20px;
    box-shadow: 0 0 14px rgba(0, 123, 255, 0.35);
    animation: pulse-glow 4s infinite ease-in-out;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 12px rgba(0,123,255,0.35);
    }
    40% {
        transform: scale(1.04);
        box-shadow: 0 0 18px rgba(0,123,255,0.45);
    }
    60% {
        transform: scale(1.04);
        box-shadow: 0 0 35px rgba(0,123,255,0.7), 
                    0 0 50px rgba(0,123,255,0.3); 
    }
    80% {
        transform: scale(1.04);
        box-shadow: 0 0 18px rgba(0,123,255,0.45);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 12px rgba(0,123,255,0.35);
    }
}
.menu-login h1 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.menu-login p {
    margin-bottom: 24px;
    color: #555;
}
.menu-login button {
    display: block;
    width: 100%;
    margin: 8px 0;
    padding: 12px;
    font-size: 1rem;
    background: #005baa;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
     transition: 0.3s;
}
.menu-login button:hover {
    background: linear-gradient(45deg, #0056b3, #003f7d);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

.search-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
}

.search-box input {
  width: 100%;
  padding: 10px 12px;
  font-size: 1rem;
  border-radius: 25px;
  border: 1px solid #ccc;
  outline: none;
  background-color: #f1f3f6;
}

.search-box input::placeholder {
  color: #888;
}

