body {
    font-family: Arial, sans-serif;
    background-color: darkcyan;
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    flex-shrink: 0;
    background-color: var(--background-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-content{
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.1rem;
}
.logo{
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: bold ;
    color:var(--text-color);
    text-decoration: none;
    gap: 0.625rem;
}

.logo-image{
    height:4.5rem ;
    width: 5.5rem;
   
}

.logo-text{
    font-size: 1.5rem;
    font-weight: bold;
}

.nav{
    display: none;
    gap: 1.5rem;
}

@media screen and (min-width:768px){
    .nav{
        display: flex;
   
}
}


.nav-link{
    color: #718096;
    font-size:1.125rem ;
    font-weight: 600;
    transform: color 0.1s;
}

.nav-link:hover{
    color: var(--link-color);
}

.contact-button{
    display: none;
    border: none;
    border-radius: 0.35rem;
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}


@media screen and (min-width:768px) {

    .contact-button{
        display: block;
}
}


.admin-login-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
}

.admin-login-container h2 {
    text-align: center;
    margin: 0;
    color: black;
    background: white;
    padding: 30px 40px 0 40px;
    border-radius: 10px 10px 0 0;
    width: 400px;
    box-sizing: border-box;
}

.admin-login-container form {
    background: white;
    padding: 20px 40px 40px 40px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    width: 400px;
    box-sizing: border-box;
    margin: 0;
}

.adminLoginForm label{
    text-align: left;
}
    

/* Close Button Styling */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    padding: 0;
}
  
.close-btn:hover {
    color: rgb(52, 21, 21);
}

h2 {
    margin-bottom: 20px;
}

input {
    width: 95%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background: #6366F1;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: rgb(142, 134, 134);
}

#error-message {
    color: red;
    margin-top: 10px;
}
