diff --git a/src/common/components/Button/styles.sass b/src/common/components/Button/styles.sass
new file mode 100644
index 0000000..c001e28
--- /dev/null
+++ b/src/common/components/Button/styles.sass
@@ -0,0 +1,18 @@
+@import "@/common/styles/colors"
+
+.btn
+  background-color: $primary
+  border: none
+  color: $text
+  padding: 0.5rem 1rem
+  border-radius: 0.6rem
+  font-size: 14pt
+  font-weight: 600
+  transition: all 0.2s
+  cursor: pointer
+
+.btn:hover
+  filter: brightness(0.9)
+
+.btn:active
+  transform: rotateY(20deg)
\ No newline at end of file