/* login.css */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background: url('/images/background.png') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
  padding: 20px;
  border-radius: 10px;
}

header .logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 0px;
}

.login-section {
  display: flex;
  justify-content: center;
}

.login-button {
  background-color: #e50914;
  color: #fff;
  border: none;
  padding: 20px 30px;
  font-size: 1.2em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 5px;
  height: 30px; /* Ensures the height is consistent */
  line-height: 1.5; /* Vertically centers the text in the button */
}

.login-button:hover {
  background-color: #ff1e2d;
}
