body {
    font-family: 'Poppins', sans-serif;
}



/* Common Navbar Styling */
.navbar {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0px;
    right: 0px;
    background-color: #274153eb;
    height: 84px;
    width: 100%;
    max-width: 100vw;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

/* Logo Styling */
.logo img {
    position: flex;
    height: 40px;
    width: 80%;
    border: none;
    border-radius: 10px;
    margin-left: 10px;
    padding-left: 0px;
    padding-top: 4px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 4px 6px 12px rgba(.2, .4, .2, 0.4);
}



/* Navbar Links Styling */
.nav-links {
   font-family: 'Poppins', sans-serif;
   justify-content: space-between;
   align-items: right;
   list-style: none;
   display: flex;
   gap: 10px;
   position: relative;
}

.nav-links li {
    position: relative;
    display: inline-block;
}

.nav-links li a {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: white;
    text-transform: capitalize;
    text-decoration: none;
    padding: 10px 15px;
    margin-right: 20px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    box-shadow: 0 3px 7px rgba(1, 2, 3, 0.5);
}

.nav-links li a:hover {
    color: #ff5722;
    background: black;
    border-radius: 7px;
}

/* Responsive Navbar */
.menu-toggle {
    margin-right: 10px;
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Mobile View */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #27ae60;
        position: absolute;
        top: 60px;
        right: 0px;
        width: 250px;
        border-radius: 15px;
        z-index: 1001;
        box-shadow: 0 3px 7px rgba(1, 2, 3, 0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}



/* Stunning Login Form */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.3px;
    background: linear-gradient(to right, #9fcbcd, #5d2a38);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
}

.auth-container {
    width: 97%;
    max-width: 375px;
    background: white;
    padding: 30px;
    padding-top: 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    align-items: center;
}

h2 {
    color: #34485d;
    font-size: 24px;
    margin-bottom: 10px;
}

.error-msg {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    font-family: 'Poppins', sans-serif;
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input {
    font-family: 'Poppins', sans-serif;
    align-items: center;
    width: 93.5%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    background: #f8f8f8;
}

.btn {
    width: 101.2%;
    background: #34485d;
    color: white;
    border: none;
    padding: 12px;
    font-size: 18px;
    border-radius: 6px;
    cursor: hand;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    cursor: hand;
    background: #10161c;
    box-shadow: 2px 5px 10px rgba(39, 174, 96, 0.3);
}

a {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    color: #476381;
    font-weight: bold;
    transition: color 0.3s;
}

a:hover {
    font-family: 'Poppins', sans-serif;
    color: #0a2d16;
}
