﻿.login-page {
    min-height: 100vh;
    background: #f6f3ea;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #ffffffcc;
}

.logo {
    font-size: 26px;
    font-weight: 600;
    color: #d08b5b;
}

    .logo span {
        color: #2f3e2e;
    }

.signup-area {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.signup-btn {
    background: #2f3e2e;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
}

/* Main Section */
.login-container {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px;
}

/* Left Form */
.login-form {
    width: 380px;
}

    .login-form h1 {
        font-size: 42px;
        margin-bottom: 30px;
        color: #222;
    }

    .login-form label {
        font-size: 14px;
        margin-top: 12px;
        display: block;
    }

    .login-form input {
        width: 100%;
        padding: 10px;
        margin-top: 6px;
        border-radius: 6px;
        border: 1px solid #ddd;
    }

.login-btn {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background: #2f3e2e;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
}

.forgot {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: #333;
}

/* Right Image */
.login-image img {
    width: 420px;
    max-width: 100%;
}


.hero-wrapper {
 
    width: 98%;
/*    background: #8bc8fb;*/
    border-radius: 0px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    padding: 0px 10px 0px 10px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 20px;
}

.nav-links {
    display: flex;
    gap: 30px;
    font-size: 14px;
}

    .nav-links a,
.auth-buttons a {
    cursor: pointer;
    text-decoration: none; /* removes underline */
    color: inherit; /* keeps normal text color */
    font-weight: 500;
}

    .nav-links a:hover,
    .auth-buttons a:hover {
        color: #000; /* optional hover color */
    }
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.signin {
    font-size: 14px;
    cursor: pointer;
}

.get-started {
    background: black;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
}

/* Hero Content */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

/* Left Side */
.hero-text {
    max-width: 500px;
}

.tagline {
    font-size: 14px;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.description {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 30px;
    padding: 10px 15px;
    width: 260px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
}

    .search-box input {
        border: none;
        outline: none;
        margin-left: 8px;
        width: 100%;
    }

/* Right Image */
.hero-image img {
    width: 420px;
    max-width: 100%;
}
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        margin-top: 30px;
    }

    .search-box {
        margin: auto;
    }
}


.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
}