@import"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";*{margin:0;padding:0;box-sizing:border-box}body{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:linear-gradient(135deg,#667eea,#764ba2);min-height:100vh;padding:20px}#root{display:flex;justify-content:center;align-items:center;min-height:100vh}.home{display:flex;flex-direction:column;align-items:center;max-width:600px;width:100%;background:#fffffff2;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border-radius:20px;padding:40px;box-shadow:0 20px 40px #0000001a;border:1px solid rgba(255,255,255,.2)}.home h1{color:#2d3748;font-size:2.5rem;font-weight:700;margin-bottom:30px;text-align:center;background:linear-gradient(135deg,#667eea,#764ba2);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.create_form{display:flex;gap:12px;width:100%;max-width:500px;margin-bottom:30px}.create_form input{flex:1;padding:16px 20px;border:2px solid #e2e8f0;border-radius:12px;font-size:16px;font-weight:400;background:#fff;transition:all .3s ease;outline:none;box-shadow:0 2px 4px #0000000d}.create_form input:focus{border-color:#667eea;box-shadow:0 0 0 3px #667eea1a}.create_form input::placeholder{color:#a0aec0;font-weight:400}.create_form button{padding:16px 24px;background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;border:none;border-radius:12px;font-size:16px;font-weight:600;cursor:pointer;transition:all .3s ease;box-shadow:0 4px 12px #667eea4d;min-width:80px}.create_form button:hover{transform:translateY(-2px);box-shadow:0 6px 20px #667eea66}.create_form button:active{transform:translateY(0)}.tasks-container{width:100%;max-width:500px;display:flex;flex-direction:column;gap:12px}.task{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;background:#fff;border-radius:12px;box-shadow:0 2px 8px #0000000d;border:1px solid #f7fafc;transition:all .3s ease;animation:slideIn .3s ease}.task:hover{transform:translateY(-2px);box-shadow:0 4px 16px #0000001a}.checkbox{display:flex;align-items:center;cursor:pointer;flex:1}.checkbox .icon{margin-right:12px;font-size:20px;transition:all .3s ease}.checkbox .icon:hover{transform:scale(1.1)}.task p{font-size:16px;font-weight:500;color:#2d3748;margin:0;transition:all .3s ease}.line_through{text-decoration:line-through;color:#a0aec0!important}.task-actions{display:flex;gap:8px}.task-actions .icon{cursor:pointer;font-size:18px;color:#e53e3e;transition:all .3s ease;padding:6px;border-radius:6px}.task-actions .icon:hover{background:#fed7d7;transform:scale(1.1)}.no-tasks{text-align:center;color:#718096;font-size:18px;font-weight:500;margin-top:40px;padding:40px;background:#f7fafc;border-radius:12px;border:2px dashed #e2e8f0}.completed-task .checkbox .icon{color:#48bb78}.pending-task .checkbox .icon{color:#cbd5e0}@keyframes slideIn{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}@media (max-width: 640px){.home{padding:20px;margin:10px}.home h1{font-size:2rem;margin-bottom:20px}.create_form{flex-direction:column;gap:12px}.create_form input{padding:14px 16px}.create_form button{padding:14px 20px}.task{padding:14px 16px}}
