/*

@Author: AXUSLK
@URL: http://github.com/AXUSLK

This file contains the custom styling for the Enlit Creation website, 
Edit this file to modify the look and feel of the website.


	// Table of contents //

		01. BACK TO Top BUTTON
		02. 
*/

/* 01.  BACK TO Top BUTTON */
#back-to-top-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}

#back-to-top-btn.btn-dark {
  background-color: #333;
  color: #fff;
}

#back-to-top-btn:hover {
  cursor: pointer;
}

#contact-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

label {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 16px;
  color: #aaa;
  transition: all 0.2s ease-out;
  pointer-events: none;
}

input,
textarea {
  width: 100%;
  padding: 20px 10px;
  border: none;
  border-bottom: 2px solid #ddd !important;
  border-radius: 0.3rem;
  font-size: 16px;
  color: #444;
  transition: all 0.2s ease-out;
  -webkit-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  -ms-border-radius: 0.3rem;
  -o-border-radius: 0.3rem;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}

textarea {
  border: 1px solid #eee;
}

input:focus,
textarea:focus {
  outline: none;
  border-bottom: 2px solid #1e90ff !important;
}

input:focus + label,
textarea:focus + label,
input:not(:placeholder-shown) + label,
textarea:not(:placeholder-shown) + label {
  top: -25px;
  font-size: 14px;
  color: #212529;
}

#submit {
  display: block;
  width: 100%;
  padding: 20px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  color: #fff;
  background-color: #1e90ff;
  cursor: pointer;
  transition: all 0.2s ease-out;
}

#submit:hover {
  background-color: #0066cc;
}
