@import url('https://fonts.googleapis.com/css?family=Open+Sans');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
  background-image: url("../Imgs/FundoLogin.png");
  background-size: cover;

  width: 100%;
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .login-container {
  				
            background-color: rgba(0, 19, 51, 0.9);
            padding: 40px;
            border-radius: 10px;
            width: 350px;
            max-width: 400px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            color: white;
            text-align: center;
        }

        .login-container h2 {
            text-align: center;
            margin-bottom: 10px;
            font-size: 36px;
        }

        .form-group {
            margin-bottom: 20px;
        }

.login-container input[type="text"],
.login-container input[type="password"] {
  width: 100%;
  margin-bottom: 10px;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  outline: none;
  padding: 12px;
  font-size: 14px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  box-shadow: inset 0 -5px 45px rgba(100, 100, 100, 0.2), 0 1px 1px rgba(255, 255, 255, 0.2);
  transition: box-shadow 0.5s ease;
}
/* Botão */
.login-container button {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-container button:hover {
  background-color: #0056b3;
}

/* Link para registro */
.login-container .register {
  margin-top: 20px;
  font-size: 0.9rem;
}

.login-container .register a {
  color: #00bfff;
  text-decoration: none;
}

.login-container .register a:hover {
  text-decoration: underline;
}