/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}


body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-image: url(../images/swami-main.JPG);
  position: relative;
  background-size: cover;
}
body:before {
  content: '';
  position: absolute;
  background-color:rgba(7, 7, 7, 0.6);
  width:100%;
  height:100%;
  left:0;
  right:0;
  top:0;
  bottom:0;
}
header {
  border-bottom: 1px solid rgb(130, 106, 251,0.3);
}
.container {
  position: relative;
  max-width: 700px;
  width: 100%;
  background: #EEF2FF;
  padding:30px 25px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.container header {
  font-size: 1.5rem;
  color: #333;
  font-weight: 500;
  text-align: center;
}
.container .form {
  margin-top: 30px;
}
.input-box {
  width: 100%;
  margin-top: 20px;
}
.input-box label {
  color: #333;
}
input:-webkit-autofill {
  background-color: black !important;
}
.form :where(.input-box input, .select-box, .input-box textarea, .input-box select) {
  position: relative;
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: #707070;
  margin-top: 8px;
  border: 1px solid #fff;
  border-radius: 6px;
  padding: 0 15px;
  background-color: #fff !important;
  box-shadow: rgb(130, 106, 251,0.6) 0px 1px 4px;
}
.input-box input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.form .column {
  display: flex;
  column-gap: 15px;
}
.form .gender-box {
  margin-top: 20px;
}
.gender-box h3 {
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.form :where(.gender-option, .gender) {
  display: flex;
  align-items: center;
  column-gap: 50px;
  flex-wrap: wrap;
}
.form .gender {
  column-gap: 5px;
}
.gender input {
  accent-color: rgb(130, 106, 251);
}
.form :where(.gender input, .gender label) {
  cursor: pointer;
}
.gender label {
  color: #707070;
}
.address :where(input, .select-box) {
  margin-top: 15px;
}
.select-box select {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  color: #707070;
  font-size: 1rem;
}
.form button {
  height: 55px;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background: rgb(130, 106, 251);
}
.form button:hover {
  background: rgb(88, 56, 250);
}

@media screen and (max-width: 500px) {
  .form .column {
    flex-wrap: wrap;
  }
  .form :where(.gender-option, .gender) {
    row-gap: 15px;
  }
}

/*  */


svg {
  font-family: 'Russo One', sans-serif;
  width: 100%; height: 100%;
}
svg text {
  text-transform: uppercase;
  animation: stroke 5s alternate;
  stroke-width: 3;
  stroke: rgb(130, 106, 251);
  font-size: 80px;
  color:rgb(130, 106, 251);
  letter-spacing:10px;
  fill:rgb(130, 106, 251);
}
@keyframes stroke {
  0%   {
    fill: rgb(130, 106, 251,0); stroke: rgb(130, 106, 251,1);
    stroke-dashoffset: 25%; stroke-dasharray: 0 50%; stroke-width: 2;
  }
  70%  {fill: rgb(130, 106, 251,0); stroke: rgb(130, 106, 251,1); }
  80%  {fill: rgb(130, 106, 251,0); stroke: rgb(130, 106, 251,1); stroke-width: 3; }
  100% {
    fill: rgb(130, 106, 251,1); stroke: rgb(130, 106, 251,0);
    stroke-dashoffset: -25%; stroke-dasharray: 50% 0; stroke-width: 0;
  }
}
