@charset "utf-8";

body {
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
  margin: 0;
  background-image: url('../../assets/thumbnails/bg-login.jpg'); 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 500px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.3);
}

.container h1 {
  text-align: center;
  color: #1b1717;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: bold;
  margin-top: 15px;
}

input {
  margin-top: 5px;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1em;
}

button {
  margin-top: 25px;
  padding: 15px;
  background-color: #3498db;
  color: white;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #04385a;
}
