* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #003A6B;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.container {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

.form-container {
  background: #fff;
  border-radius: 10px;
  padding: 30px 25px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  text-align: center;
}

.brand {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #333;
  letter-spacing: 1px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

label {
  font-size: 0.9rem;
}

input[type="text"],
input[type="password"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.options .forgot {
  color: #003A6B;
  text-decoration: none;
}

.login-button {
  margin-top: 15px;
  background-color: #003A6B;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

footer {
  margin-top: 25px;
  font-size: 0.75rem;
  color: #666;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .form-container {
    padding: 20px 15px;
  }

  .logo-background {
    width: 200px;
    height: 200px;
  }
}
