/* Login Page Styles */

body {
  background-color: #000000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
}
.blockout{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero{
    width: 80%;
    min-height: 5vh;
    /*background: linear-gradient(rgba(182, 142, 191, 0.7), rgba(8, 0, 58, 0.7)), url('src/assets/AP-Assets/ap.jpg');*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-text{
    text-align: center;
    max-width: 800px;

}

.hero-text h1{
    font-size: 100px;
    font-weight: 150px;
    
}

.hero-text h1:hover{
  transition: all 0.5s  ease;
  transform: scale(1.15);
  cursor: pointer;
}

.hero-text a{
  color: white;
  text-decoration: none;
}

.hero-text p{
    max-width: 600px;
    font-size: 20px;
    margin: 10px auto 20px;
    line-height: 1.6;
    font-weight: 50;
}
.container {
  max-width: 28rem;
  width: 100%;
  background-color: #3b3b3b;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
}

.form {
  margin-top: 1rem;
  width: 100%;
}

.form label {
  display: block;
  color: #ffffff;
}

.form input {
  width: 100%;
  background-color: #ffffff;
  padding: 0.75rem;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  border: none;
  color: #000000;
  font-size: 1rem;
  box-sizing: border-box;
}

.form input::placeholder {
  color: #3f3f3f;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 80%;
  background-color: #ffffff;
  padding: 1rem;
  margin-top: 1rem;
  margin-left: 50px;
  border-radius: 0.5rem;
  font-weight: 700;
  border: none;
  color: #000000;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: #000000;
  color: #ffffff;
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-secondary {
  width: 100%;
  background-color: #000000;
  padding: 0.75rem;
  margin-top: 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #000000;
}

.notice {
  background-color: #000000;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  text-align: center;
}

.hidden {
  display: none;
}

.message {
  text-align: center;
  margin-top: 0.5rem;
}

/* Spinner Animation */
.spinner {
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
