/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

/* Header Section */
header {
    background: linear-gradient(90deg, #cfad8a, #e67e22);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    border-bottom: 3px solid #e67e22;
}

.logo img {
    max-height: 30px;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle img {
    width: 20px;
    height: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #fff;
}

.nav-links {
    display: flex;
}

.nav-links.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(221, 178, 128, 0.9);
    border-radius: 6px;
    width: auto;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 10;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-links li {
    margin: 1px;
}

.nav-links a {
    padding: 0px 10px;
    text-align: left;
    display: block;
}

.nav-links a:hover {
    color: brown;
}

/* Body Section */
.container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; 
  }
  
  .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./images/banner2.png') center/cover no-repeat;
    filter: blur(3px); 
    z-index: -1; 
  }
  
.form-box {
    width: 90%;
    max-width: 450px;
    min-width: 300px;
    background: white;
    padding: 35px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 2px 2px 20px rgb(210, 210, 221);
}

.form-box h1 {
    font-size: 24px;
    color: #a20a0a;
}

.form-box .underline {
    width: 30px;
    height: 4px;
    background-color: #a20a0a;
    margin: 10px auto 20px auto;
    border-radius: 5px;
}

.input-field {
    background-color: #f89661;
    margin: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    height: 40px;
    padding: 10px;
    transition: background-color 0.5s ease;
}

.input-field input {
    width: 100%;
    background: transparent;
    margin-left: 10px;
    border: 0;
    outline: 0;
    padding: 18px 15px;
}
.input-field input::placeholder {
    color: black;
    opacity: 0.7; 
    font-weight: bold;
}
.input-field:hover{
    background-color: #f6ac84;
    
}


.btn-field {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

button {
    flex-basis: 90%;
    background: #ca6e30;
    color: black;
    height: 40px;
    border-radius: 20px;
    border: 0;
    outline: 0;
    cursor: pointer;
    color:white;
}

button:hover{
    /* background-color: #f35e14; */
    color:black;
    transition: 0.3s ease-in-out ;
}
/*
button.disable {
    background: rgb(210, 210, 221);
    color: black;
}
*/
/* Footer Section */
footer {
    background: #343a40;
    color: #fff;
    text-align: center;
    padding: 28px; 
    font-size: 0.9rem;
    border-top: 3px solid #e67e22;
}


/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 15px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .form-box {
        width: 85%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .form-box {
        width: 90%;
        padding: 25px;
    }

    .form-box h1 {
        font-size: 22px;
    }
}
