diff --git a/Form-Controls/index.html b/Form-Controls/index.html
index 4344b144..ac9b08d7 100644
--- a/Form-Controls/index.html
+++ b/Form-Controls/index.html
@@ -10,18 +10,83 @@
-
-
+
-
diff --git a/Form-Controls/styles.css b/Form-Controls/styles.css
index e69de29b..2da887ca 100644
--- a/Form-Controls/styles.css
+++ b/Form-Controls/styles.css
@@ -0,0 +1,154 @@
+/* importação da fonte do google fonts */
+@import url(https://fonts.googleapis.com/css?family=Noto+Sans);
+
+
+body{
+ height: 100%;
+ font-family: 'Noto Sans', sans-serif;
+ background-color: lightgray
+}
+
+
+.contact_form{
+ width: 450px;
+ height: auto;
+ margin: 80px auto;
+ border-radius: 10px;
+ text-align: left;
+ padding-top: 30px;
+ padding-bottom: 20px;
+ background-color: #fbfbfb;
+ padding-left: 30px;
+}
+#color {
+ background-color: #fbfbfb;
+ width: 408px;
+ height: 40px;
+ border-radius: 5px;
+ border-style: solid;
+ border-width: 1px;
+ border-color: #050505;
+ margin-top: 10px;
+ padding-left: 10px;
+ margin-bottom: 20px;
+}
+#date {
+ background-color: #fbfbfb;
+ width: 408px;
+ height: 40px;
+ border-radius: 5px;
+ border-style: solid;
+ border-width: 1px;
+ border-color: #050505;
+ margin-top: 10px;
+ padding-left: 10px;
+ margin-bottom: 20px;
+}
+input{
+ background-color: #fbfbfb;
+ width: 408px;
+ height: 40px;
+ border-radius: 5px;
+ border-style: solid;
+ border-width: 1px;
+ border-color: #050505;
+ margin-top: 10px;
+ padding-left: 10px;
+ margin-bottom: 20px;
+}
+
+
+textarea{
+ background-color: #fbfbfb;
+ width: 405px;
+ height: 150px;
+ border-radius: 5px;
+ border-style: solid;
+ border-width: 1px;
+ border-color: #060505;
+ margin-top: 10px;
+ padding-left: 10px;
+ margin-bottom: 20px;
+ padding-top: 15px;
+}
+
+
+label{
+ display: block;
+ float: center;
+}
+
+
+button{
+ height: 45px;
+ padding-left: 5px;
+ padding-right: 5px;
+ margin-bottom: 20px;
+ margin-top: 10px;
+ text-transform: uppercase;
+ background-color: #0f0d0d;
+ border-color: #131212;
+ border-style: solid;
+ border-radius: 10px;
+ width: 420px;
+ cursor: pointer;
+}
+
+
+button p{
+ color: #fff;
+}
+
+
+span{
+ color: #1a1818;
+}
+
+
+.aviso{
+ font-size: 13px;
+ color: #0e0e0e;
+}
+
+
+h1{
+ font-size: 35px;
+ text-align: center;
+ padding-bottom: 20px;
+ color: black;
+}
+
+
+h3{
+ font-size: 14px;
+ padding-bottom: 30px;
+ color: #0e0e0e;
+}
+
+
+p{
+ font-size: 14px;
+ color: #0e0e0e;
+}
+
+
+::-webkit-input-placeholder {
+ color: #a8a8a8;
+}
+
+
+::-webkit-textarea-placeholder {
+ color: #a8a8a8;
+}
+
+
+.formulario input:focus{
+ outline:0;
+ border: 1px solid #97d848;
+}
+
+
+.formulario textarea:focus{
+ outline:0;
+ border: 1px solid #97d848;
+}
\ No newline at end of file