/* assets/css/style.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
body {
  background: #111;
  color: #eee;
  padding: 10px;
}
a {
  color: #00cfff;
  text-decoration: none;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
nav a {
  margin-left: 15px;
}
.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.movie-card {
  background: #222;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
}
.movie-card:hover {
  transform: scale(1.03);
}
.movie-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px 0;
  font-size: 0.9em;
  color: #aaa;
}
@media (max-width: 600px) {
  .movie-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* form container styles */
.form-container {
  max-width: 400px;
  margin: 40px auto;
  background: #222;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
}
.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
}
.form-container input,
.form-container button {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
}
.form-container input {
  background: #333;
  color: #eee;
}
.form-container button {
  background: #00cfff;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.form-container button:hover {
  background: #00b0e0;
}
.form-container .error {
  color: #ff6b6b;
  text-align: center;
  margin-bottom: 10px;
}
.actions {
  margin-top: 8px;
  font-size: 0.9em;
}
.actions a {
  color: #ffa500;
}
