/* 🌿 General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    /* background: url('forest-bg.jpg') no-repeat center center fixed; */

    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* background: linear-gradient(to bottom, #eafaf1, #d4f4dd); */
    /* background: linear-gradient(to bottom, #f0fdf4, #d2f5d2); */
    /* background: linear-gradient(to top, #d4f4dd, #fff); */
    /* background: linear-gradient(to top, #0B3D02 0%, #0B3D02); */
    background: #d3e4c2;


}


/* 📦 Login Box */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-box {
    /* background: rgba(255, 255, 255, 0.1); */
    /* background: rgb(76, 175, 80); */
    background: #96b279;
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); */
    box-shadow: 0 20px 49px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: #0B3D02;
    max-width: 430px;
    width: 90%;
}

/* 🌲 Title & Text */
h2 {
    margin-bottom: 10px;
    font-size: 22px;
}

p {
    font-size: 14px;
    opacity: 0.8;
}

/* ✏️ Input Fields */
input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #d3e4c2;
    color: #0B3D02;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    box-sizing: border-box;
    /* border: 1px solid; */
}


button:hover {
    background: #0B3D02;
    color: #fff;
}

/* ⚠️ Error Message */
.error {
    color: #ff5c5c;
    font-size: 14px;
    margin-top: 10px;
}

.logo {
    width: 80px;
    /* Adjust as needed */
    display: block;
    margin: 0 auto 10px auto;
    /* Centering the logo */
}