body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f0ec;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 50px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
    margin-top: 10px;
    height: 70px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #1abc9c;
    transform: scale(1.1) ;
    font-weight: 700;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px; /* Adds spacing between buttons */
}

/* Login button in header */
.login-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background: #1abc9c;
    border: none;
    padding: 10px 20px;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

.login-btn:hover {
    color: black;
    background: #afaaaa;
}

.search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn svg {
    width: 24px;
    height: 24px;
    fill: black; 
    transition: transform 0.2s ease-in-out;
}

.search-btn:hover svg {
    transform: scale(1.1); 
}

/* Login Form */
.login-container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.login-container2 label {
    display: block; /* Makes labels take full width */
    text-align: left; /* Aligns text to the left */
    font-weight: 600; /* Optional: Makes label text slightly bold */
    margin-bottom: 1px; /* Adds spacing between label and input */
    margin-left: 5px;
}

.login-box {
    background: #1abc9c;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 300px;
    height: 80%;
    width: 90%;
}

.login-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: black;
    margin-bottom: 20px;
}

.login-box input {
    width: 90%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #dddddda9;
    border-radius: 50px;
    font-size: 14px;
}

.forgot-password {
    text-decoration: none;
    font-size: 12px;
    margin-top: 5px;
    color: black;
}

.forgot-password:hover {
    text-decoration: none;
}

.login-btn2 {
    font-family: 'poppins';
    width: 30%;
    border: none;
    margin-top: 5%;
    background: #16a085;
    border-radius: 6px;
    font-size: 16px;
    padding: 8px;
    transition: all 0.2s ease-in-out;
}

.login-btn2:hover {
    background: #12876f;
    font-weight: 700;
    transform: scale(1.05);
}

.login-box .or-divider {
    margin-top: 10px;
    font-size: 10px;
    font-weight: 600;
}
/* Google Login */
.google-login {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in-out;
}

.google-login:hover {
    transform: scale(1.1); /* Slightly enlarges on hover */
}

/* Adjust the size of the Google SVG */
.google-login svg {
    fill: white;
    width: 40px;
    height: 40px;
}


/* Footer */
footer {
    background: white;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    color: black;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.dashboard-link {
    text-decoration: none;
    color: #5e5d5d;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
    position: relative;
    display: inline-block;
}

.default-text {
    display: inline;
}

.hover-text {
    display: none;
}

.dashboard-link:hover .default-text {
    display: none;
}

.dashboard-link:hover .hover-text {
    display: inline;
    color: #5e5d5d; /* Darker color on hover */
}