/* public/css/style.css */

body {
  background-color: #f8f9fa;
  color: #343a40;
}

.hero {
  background: url('../images/minecraft-bg.jpg') center/cover no-repeat;
  border-radius: .5rem;
  color: white;
  position: relative;
  padding: 4rem 2rem;
  margin-bottom: 3rem;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  border-radius: .5rem;
}
.hero .content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.btn-primary {
  background-color: #0069d9;
  border-color: #0062cc;
}
.btn-primary:hover {
  background-color: #005cbf;
  border-color: #0056b3;
}

.card {
  border-radius: .5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.form-container {
  max-width: 400px;
  margin: auto;
}

.text-muted {
  color: #6c757d !important;
}

