@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
    background-color: #000000;
    /* Dark background */
    color: #fff;
}


/* Navbar */
.navbar {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0), black);
}

.nav-item {
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.nav-item:hover {
    transform: translateY(-4px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Nav Links */
.nav-link {
    font-size: 18px;
    transition: color 0.3s ease;
    color: #ccc;
}

.nav-link:hover {
    color: #fff;
}

/* Underline Animation */
.underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: goldenrod;
    transition: width 0.4s ease;
}

.nav-item:hover .underline {
    width: 100%;
}

/* Account Icon Animation */
.account {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.account i {
    transition: transform 0.4s ease;
}

.login-status {
    position: absolute;
    left: 50px;
    opacity: 0;
    font-size: 1rem;
    color: #ff8c00;
    font-weight: 700;
    background-color: transparent;
    padding: 5px;
    border-radius: 5px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateX(-20px);
}

.account:hover .login-status {
    opacity: 1;
    transform: translateX(0);
}

.account:hover i {
    transform: translateX(-8px);
}

.logout-button {
    cursor: pointer;
    font-weight: 500;
    border: 1px solid white;
    color: white;
    border-radius: 40px;
    text-decoration: none;
    padding: 5px 20px 5px 20px;
    transition: background-color 0.3s ease, transform 0.5s ease;
}

.logout-button:hover {
    transform: translateY(-5px);
    background-color: white;
    color: black;
}

.home {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(0deg,rgba(0, 0, 0, 0.18) , black);
    color: #fff;
}
/* Auth container with background image and gradient */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 600px;
    margin-top: 70px;
}

/* Form container styling */
.form-container {
    background-color: transparent;
    backdrop-filter: blur(4px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.6);
    /* Orange shadow */
    width: 100%;
    max-width: 700px;
    transition: transform 0.4s ease;
}

.form-container:hover {
    transform: translateY(-10px);
    /* Hover lift effect */
}

.form-container h2 {
    text-align: center;
    color: goldenrod;
    font-weight: 300;
    font-size: 3rem;
    font-family: "Playfair", serif;
    margin-bottom: 20px;
}

.form-container label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #ddd;
    /* Light gray labels */
}

.form-container input {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 5px;
    background-color: #333;
    /* Darker gray input fields */
    color: #fff;
    outline: none;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-container input:focus {

    box-shadow: 0 0 8px rgba(255, 165, 0, 0.8);
    /* Orange glow */
}

.form-container button {
    width: 100%;
    padding: 0.7rem;
    border: none;
    border-radius: 5px;
    background-color: #ffa500;
    /* Orange button */
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.form-container button:hover {
    background-color: #ffcc00;
    /* Golden hover */
    transform: translateY(-5px);
    /* Button hover lift */
}

.form-toggle {
    text-align: center;
    margin-top: 1rem;
}

.form-toggle a {
    color: #ffcc00;
    /* Golden link */
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-toggle a:hover {
    color: #ffa500;
    /* Orange hover effect */
}

/* Responsive layout adjustments */
@media (max-width: 768px) {
    .auth-container {
        padding: 10px;
    }
}


/* footer */

a {
    text-decoration: none;
}

/* FOOTER */

/* fooooter */
.footer_section {
    background-color: #000000;
    color: #ffffff;
    padding: 75px 40px 0px;
    text-align: center;
}

.footer_section h4 {
    font-size: 28px;
}

.footer_section p {
    color: #dbdbdb;
}


.footer_section .footer_contact .contact_link_box {
    display: flex;
    flex-direction: column;
}

.footer_section .footer_contact .contact_link_box a {
    margin: 5px 0;
    color: #ffffff;
}

.footer_section .footer_contact .contact_link_box a:hover {
    color: #ffbe33;
}