/* Fonts */
@font-face {
  font-family: 'PT Mono';
  src: url('./fonts/PTM.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Expletus Sans Regular';
  src: url('./fonts/expletus-sans/ExpletusSans-Regular.ttf') format('truetype');
}

body {
  font-family: 'PT Mono', sans-serif;
  margin: 0;
  overflow-x: hidden;
  background: url('./bg2.png') center center / cover no-repeat fixed;
  padding: 5vw;
  text-align: center;
  color: #181818;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  font-size: 1rem;
  width: 90%;
  max-width: 400px;
  margin: 10vh auto;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.container h2 {
  font-family: 'Expletus Sans Regular', sans-serif;
  font-weight: normal;
  margin-bottom: 20px;
  color: #181818;
  font-size: 1.4rem;
}

/* Botões */
.login-btn {
  position: relative;
  background-color: rgba(251, 219, 250, 0.9);
  width: 90%;
  max-width: 300px;
  height: auto;
  color: #181818;
  outline: none;
  margin: 5% 0;
  font-size: 1.05rem;
  font-family: 'Expletus Sans Regular', sans-serif;
  padding: 0.7em;
  border: 2px solid rgba(162, 133, 221, 0.4);
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.login-btn:hover {
  background-color: rgba(162, 133, 221, 0.1);
  border: 2px solid rgba(162, 133, 221, 0.4);
}