* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to bottom, #8B4513, #D2691E, #FFA500, #F4A460);
    overflow: hidden;
    position: relative;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Login Form */
.login-form {
    position: relative;
    width: 400px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    animation: fadeIn 1s ease-out;
}

.login-form h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-group input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    outline: none;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-group input:focus {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.input-group i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
}

.login-btn {
    width: 100%;
    padding: 15px;
    background: #8B4513;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.login-btn:hover {
    background: #A0522D;
    transform: translateY(-5px);
}

.form-footer {
    margin-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.form-footer a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Background Elements */
.tree {
    position: absolute;
    bottom: 0;
    z-index: 1;
}

.tree-1 {
    left: 5%;
    height: 300px;
    animation: sway 8s infinite ease-in-out;
}

.tree-2 {
    right: 10%;
    height: 350px;
    animation: sway 10s infinite ease-in-out;
}

.tree-3 {
    left: 15%;
    height: 250px;
    animation: sway 12s infinite ease-in-out;
}

.tree-4 {
    right: 20%;
    height: 320px;
    animation: sway 9s infinite ease-in-out;
}

.trunk {
    position: absolute;
    bottom: 0;
    width: 20px;
    background: #8B4513;
    border-radius: 10px 10px 0 0;
}

.tree-1 .trunk {
    height: 80px;
    left: 40px;
}

.tree-2 .trunk {
    height: 100px;
    left: 45px;
}

.tree-3 .trunk {
    height: 70px;
    left: 35px;
}

.tree-4 .trunk {
    height: 90px;
    left: 40px;
}

.leaves {
    position: absolute;
    bottom: 60px;
    width: 100px;
    height: 120px;
    background: linear-gradient(45deg, #8B4513, #D2691E, #FF8C00, #FFA500);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 0 0 20px rgba(139, 69, 19, 0.5);
}

.tree-1 .leaves {
    bottom: 80px;
}

.tree-2 .leaves {
    bottom: 100px;
    width: 120px;
    height: 140px;
}

.tree-3 .leaves {
    bottom: 70px;
    width: 90px;
    height: 110px;
}

.tree-4 .leaves {
    bottom: 90px;
    width: 110px;
    height: 130px;
}

.path {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #8B4513, #A0522D);
    clip-path: polygon(0% 100%, 10% 70%, 20% 80%, 30% 65%, 40% 75%, 50% 60%, 60% 70%, 70% 55%, 80% 65%, 90% 50%, 100% 60%, 100% 100%);
    z-index: 2;
}

.chair {
    position: absolute;
    bottom: 100px;
    z-index: 3;
}

.chair-1 {
    left: 30%;
    transform: rotate(-10deg);
    animation: chairMove 15s infinite ease-in-out;
}

.chair-2 {
    right: 35%;
    transform: rotate(10deg);
    animation: chairMove 18s infinite ease-in-out;
}

.chair-base {
    width: 60px;
    height: 60px;
    background: #8B4513;
    border-radius: 5px;
    position: relative;
}

.chair-back {
    width: 60px;
    height: 40px;
    background: #A0522D;
    border-radius: 5px 5px 0 0;
    position: absolute;
    top: -40px;
}

.falling-leaves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #FF8C00, #FF4500, #8B4513);
    border-radius: 50% 0 50% 50%;
    opacity: 0.8;
    animation: fall linear infinite;
}

/* Animations */
@keyframes sway {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

@keyframes chairMove {

    0%,
    100% {
        transform: rotate(-10deg) translateY(0);
    }

    50% {
        transform: rotate(-8deg) translateY(-5px);
    }
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-form {
        width: 90%;
        padding: 30px 20px;
    }

    .tree {
        transform: scale(0.8);
    }
}