
body {
    font-family: Garamond, serif;
    margin: 20px;
    padding: 0;
    box-sizing: border-box;
    background-color: #970300;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}

.mount {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    margin: 20px auto;
    max-width: 90%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.title {
    text-align: center;
    font-size: 50px;
}


.container {
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    align-items: center; 
    gap: 10px;   
  }

.staffdash {
    background-color: #bdbdbd;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
    margin left: 20px;
    margin-right: 20px;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: transform 0.2s ease;
}

.staffdash:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.staffdash p {
    margin: 2px 0;
    color: #970300;
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.staffdash-username {
    font-weight: bold;
    font-size: 18px;
    color: #1a73e8;
}

.button{
    background-color: #970300;
    color: #dedede;
    border-radius: 12px;
    padding: 5px;
    margin-left: auto;
    margin-top: 80px;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
}

.footer {
    background-color: #333;
    color: #f6f4e1;
    text-align: center;
    padding: 1em;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    max-height: 20px;
    margin-top: 20px;
    
}

/* Index Page CSS */

.login {
  width: 320px;
  margin: 100px auto; 
  background-color: #121212; 
  padding: 40px;
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.6); 
  border-radius: 8px;
}

.login h1 {
  text-align: center;
  color: #e50914; 
  margin-bottom: 30px;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #ffffff;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 12px 12px 12px 40px; 
  border: none;
  border-radius: 4px;
  background-color: #333; 
  color: #fff;
}

.form-input::placeholder {
  color: #bbb;
}

.form-icon-left {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  fill: #e50914; 
}

.btn {
  width: 100%;
  background-color: #e50914; 
  border: none;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #b2070a;
}

.register-link {
  text-align: center;
  margin-top: 20px;
  color: #fff;
}

.register-link a {
  color: #e50914;
  text-decoration: none;
  font-weight: bold;
}

.register-link a:hover {
  text-decoration: underline;
}
