header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px 0px 0px;
  background: rgba(34, 34, 34, 0.8);
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 60px;
  height: auto;
  margin-right: 5px;
  margin: 0%;
  padding: 0%;
}

footer {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0px 0px 0px;
  padding: 10px 0px 0px 0px;
  background: rgba(34, 34, 34, 0.8);
  color: #fff;
  bottom: 0%;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
  text-align: center;
}

@media (max-width: 480px) {
  footer {
    padding: 15px 10px;
    margin: 10px 0;
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 15px;
  }
}
.container {
  position: static;
  top: 20px;
  margin: auto;
  margin-top: 5%;
  transform: translateX(center);
  width: 350px;
  max-width: 90vw;
  height: auto;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 20px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
  padding: 20px;
}

/*
.container
{
    position: relative;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 500px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.5);
}
    */
h2 {
  color: white;
  font-size: 1.5em;
  text-transform: uppercase;
  padding: 15px 0;
}

.form-group {
  position: relative;
  width: 100%;
  max-width: 330px;
  margin: 20px 0;
  border-bottom: 3px solid white;
}

.form-group input {
  width: 100%;
  height: 50px;
  padding: 0 35px 0 10px;
  font-size: 1.2em;
  background-color: transparent;
  border: none;
  outline: none;
  color: #fff;
  box-sizing: border-box;
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #fff;
  transition: 0.5s;
}

input:focus ~ label,
input:valid ~ label {
  top: -5px;
}

.form-group i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: white;
  font-size: 1.2em;
}

p {
  text-align: center;
  color: #fff;
  margin: 10px 0;
  font-size: 0.9em;
}

p > a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

p > a:hover {
  text-decoration: underline;
  font-style: italic;
}

#btn {
  width: 50%;
  min-width: 150px;
  height: 50px;
  border-radius: 40px;
  border: none;
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 10px auto;
  cursor: pointer;
  transition: all 0.5s;
  display: block;
}

#btn:hover {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
}

#otpForm {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

#otp {
  flex: 1;
  min-width: 50px;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: none;
  border: none;
}

#otp::-webkit-inner-spin-button,
#otp::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#otp::-moz-inner-spin-button,
#otp::-moz-outer-spin-button {
  -moz-appearance: none;
  margin: 0;
}

@media (max-width: 480px) {
  .container {
    width: 95vw;
    margin: 10px auto;
    padding: 15px;
  }
  h2 {
    font-size: 1.3em;
    padding: 10px 0;
  }
  .form-group {
    width: 100%;
    margin: 15px 0;
  }
  .form-group input {
    height: 45px;
    font-size: 1.1em;
  }
  .form-group label {
    font-size: 1.1em;
  }
  #btn {
    width: 80%;
    font-size: 1.1em;
    height: 45px;
  }
  p {
    font-size: 0.8em;
  }
}
@media (max-width: 768px) {
  .container {
    width: 85vw;
    margin: 20px auto;
  }
  h2 {
    font-size: 1.4em;
  }
  .form-group input {
    height: 48px;
  }
  #btn {
    width: 60%;
    font-size: 1.15em;
  }
}
.project_window {
  background-color: #f2f2f2;
  margin: 10px;
  padding: 20px;
  border-radius: 5px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: url(../images/trendy-color-gradient-creative-background-vector.jpg);
  background-size: cover;
}

main {
  min-height: 100%;
  background-size: cover;
  box-sizing: border-box;
}

html, body {
  height: auto;
  min-height: 100%;
}

.overlay {
  background-color: rgba(96, 219, 219, 0.044); /* Dark overlay */
  padding: 0px;
  min-height: 100%;
}

.website-name {
  text-align: center;
  margin-left: 10px;
  font-size: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
}

.main {
  padding: 20px;
  min-height: auto;
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  overflow: hidden;
  max-width: 100%;
  margin: auto;
  position: relative;
  bottom: 0;
}

.gallery-container {
  display: flex;
  width: 300%;
  animation: slideRightToLeft 8s infinite;
}

.gallery-item {
  width: 33.33%;
  padding: 10px;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border: none;
}

.dots {
  text-align: center;
  padding: 5px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}

@keyframes slideRightToLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media (max-width: 480px) {
  header {
    flex-direction: none;
    text-align: center;
    padding: 10px;
  }
  .logo {
    margin-bottom: 10px;
  }
  .logo-img {
    width: 50px;
    height: auto;
  }
  .website-name {
    font-size: 18px;
  }
  nav ul {
    flex-direction: none;
    gap: 10px;
  }
  .gallery {
    padding: 10px;
  }
  .gallery-container {
    width: 100%;
  }
  .gallery-item {
    width: 100%;
    padding: 5px;
  }
  .gallery-item img {
    height: 150px;
  }
  .main {
    padding: 10px;
  }
  .text-area h2 {
    font-size: 1.2em;
  }
}
@media (max-width: 768px) {
  header {
    padding: 15px 10px;
  }
  .logo-img {
    width: 55px;
  }
  .website-name {
    font-size: 19px;
  }
  nav ul {
    gap: 15px;
  }
  .gallery {
    padding: 15px;
  }
  .gallery-item img {
    height: 180px;
  }
  .main {
    padding: 15px;
  }
}
@media (max-width: 1024px) {
  .gallery-container {
    width: 200%;
  }
  .gallery-item img {
    height: 190px;
  }
}
@media (min-width: 1200px) {
  .logo-img {
    width: 70px;
  }
  .website-name {
    font-size: 22px;
  }
  nav ul {
    gap: 25px;
  }
  .gallery-item img {
    height: 220px;
  }
  .main {
    padding: 30px;
  }
}/*# sourceMappingURL=main.css.map */