*{
  margin:0;
  padding:0;
}

body {

  display: flex;
  flex-direction: column;
  background: #FFF9E6;
  /* font-family:cursive; */
}
header {
  margin-top: 0px;
  background-color: #B8860B;
  padding: 20px 30px;
  color: white;
  box-shadow: 0px 0px 5px 5px wheat;
}

.headerSection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
  width: 100%;
}

.logo {
  width: 120px;
  height: 120px;
  background-color: white;
  color: #B8860B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 84px;
  font-weight: bold;
  font-family: monospace;
  text-shadow: 5px 5px 1px #f0b216;
}

.titleBlock {
  
  text-align: center;

}

.title {
  font-size: 50px;
  font-weight: bold;
}

.tagLine {
  font-size: 25px;
  font-style: italic;
  margin-top: 4px;
  color: #FFF9E6;
}


.log1 {
  width: 430px;
  /* font-family: cursive; */
  background-color: #FFF9E6;
  border: 4px solid #EAD9A0; /* light gold border */
  border-radius: 16px;
  padding: 40px;
  margin-top: 45px;
  align-self: center;
  box-shadow: 0 0px 48px rgba(212, 175, 55, 0.241);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  
}

.menu {
  position: relative;
}

.icon {
  font-size: 24px;
  cursor: pointer;
}

.options {
  display: none;
  position: absolute;
  top: 22px;
  right: 0px;
  background-color: #FFF9E6;
  color: #333;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  border-radius: 8px;
  overflow: hidden;
}
.menu:hover .options{
  display:block;
}
.opt {
  padding: 10px 25px;
  cursor: pointer;
}

.opt:hover {
  background-color: #efd47e;
}

.opt a {
  text-decoration: none;
  color: inherit;
}

footer{
  background-color: #D4AF37; 
  color: #333; 
  text-align: center; 
  padding: 25px 0; 
  margin-top: 40px;
 
  
}

.c1 {
  font-size: 48px;
  font-weight: bold;
  color: #B8860B;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

label {
  font-weight: 600;
  font-size: 16px;
  color: #7A6B41; /* gold-brown */
  margin-bottom: 4px;
}

.d1, .d2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.d1 input[type="text"],
.d2 input[type="password"] {
  padding: 10px 12px;
  font-size: 18px;
  border: 2px solid #EAD9A0;
  border-radius: 10px;
  background: #fff;
  color: #4A3F24;
}

.d1 input:focus,
.d2 input:focus {
  outline: none;
  border-color: #B28D28; /* darker bronze */
  box-shadow: 0 0 12px #B28D28;
}

.c4 {
  width: 100%;

  a{
    text-decoration: none;
    color: #ffffff;
  }
}

.la1,.la2{
  font-size: 20px;
}
.d3{
  margin-top: 20px;
  justify-self: center;
  padding:1px 70px;
  color:white;
}
.login-button{
 
  width: 100%;
  padding: 14px;
  font-size: 20px;
  background-color: #D4AF37; /* classic gold */
  color: #FFF9E6; /* light ivory */
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 6px 12px rgba(180, 141, 40, 0.4);
  transition: background-color 0.3s ease;
}

.login-button a:hover {
  background-color: #B28D28; /* darker bronze */
  box-shadow: 0 8px 16px rgba(178, 141, 40, 0.6);
}

.c5 {
  text-align: center;
  font-size: 14px;
  color: #7A6B41;
}

.c5 a {
  color: #B28D28;
  text-decoration: none;
  font-weight: bold;
}

.c5 a:hover {
  text-decoration: underline;
}

