body {
            background: linear-gradient(135deg, #3d533c 0%, #263526 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        .login-card {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .login-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        }
        .form-control {
            border-radius: 8px;
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
        }
        .form-control:focus {
            box-shadow: none;
            border-color: #8b4c20;
        }
        .btn-primary {
            background: linear-gradient(to right, #8b4c20, #eb7738);
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        .btn-primary:hover {
            background: linear-gradient(to right, #7a431c, #d46932);
        }
        .login-header {
            background: rgba(59, 34, 28, 0.8);
            backdrop-filter: blur(10px);
            padding: 30px;
            text-align: center;
            color: #fdf7f5;
        }
        .login-body {
            background: #fdf7f5;
            padding: 30px;
        }
        .form-floating label {
            color: #49404f;
        }
        .forgot-password {
            color: #8b4c20;
            text-decoration: none;
            font-size: 14px;
        }
        .forgot-password:hover {
            color: #eb7738;
            text-decoration: underline;
        }