html {
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}.head {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px;
    text-align: center;
    font-size: 18px;
    z-index: 1000;
}

body {
    background-color: #f8f9fa;
    color: #fdfdfd;
    padding-top: 30px; /* Add padding to prevent content from being hidden behind the fixed header */
}

.header-top {
    background-color: #d63384; 
    color: white;
    text-align: right;
    padding: 10px 0; 
    font-size: 14px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(58, 58, 58, 0.266);
}

.header-container {
    position: fixed;
    width: 100%;
    margin-top: 20px; /* Adjust for the height of the header-top */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 15px 5%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    top: 12px;
    bottom: 0px;
    position: relative;
}

.logo img {
    width: 180px;
    height: 80px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    padding-top: 20px;
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav ul li a:hover {
    color: #d63384;
}

.header-top p {
    position: relative;
    right: 10px;
    color: #ffffff;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 5%;
    }

    .logo img {

        width: 140px;
        height: auto;
    }

    nav {
        border-left: 4px solid#d63384 ;
        position: absolute;
        top: 100%;
        right: 0;
        width: 60%; /* adjust as needed */
        background-color: rgb(255, 255, 255);
        display: none;
        flex-direction: column;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    nav.show {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
    }

    nav ul li {
        margin: 10px 0;
        padding: 0 15px;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        position: absolute;
        right: 20px;
        padding-top: 50px;
        top: 40px;
        z-index: 1001;
    }

}


@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}



.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 120px); /* adjust for header height */
  padding: 2rem;
}

.login-box {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  width: 100%;
  max-width: 400px;
}

.login-box h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #0a3d62;
}

.login-box input {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.login-box button {
  width: 100%;
  padding: 0.8rem;
  background-color: #0a3d62;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.login-box button:hover {
  background-color: #063049;
}
@media (max-width: 600px) {
  .login-container {
    padding: 1rem;
    min-height: auto;
    margin-top: 3rem;
  }

  .login-box {
    padding: 1.5rem;
    box-shadow: none;
    border: 1px solid #ccc;
    border-radius: 6px;
  }

  .login-box h2 {
    font-size: 1.3rem;
  }

  .login-box input,
  .login-box button {
    font-size: 0.95rem;
    padding: 0.7rem;
  }
}
