/*= Reset CSS
============= */
@import url('https://fonts.googleapis.com/css?family=Raleway&display=swap');

:focus{outline: none;}

.col-3{
  width: 50%; position: relative;
  } /* necessary to give position: relative to parent. */

input{
  color: black; width: 100%; box-sizing: border-box;
}

.effect-1{border: 0; border-bottom: 1px solid gray;}

.effect-1 ~ .focus-border{position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: #1ca2ab; transition: 0.4s;}
.effect-1:focus ~ .focus-border{width: 100%; transition: 0.4s;}



/* button css */


.container {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  padding-top: 5%;
  padding-left: 15%;
  align-items: center;
  justify-content: center;
}

.center {
  width: 180px;
  height: 60px;
  position: absolute;
}

.btn{
  width: 180px;
  height: 60px;
  border-radius: 7px;
  cursor: pointer;
  background: transparent;
  border: 3px solid #1ca2ab;
  outline: none;
  transition: 0.7s ease;
  font-family: Raleway, verdana;
  justify-content: center;
  color: black;

}

svg {
  position: absolute;
  left: 0;
  top: 0;
  fill: none;
  stroke: #20283e;
  border-radius: 7px;
  stroke-dasharray: 150 480;
  stroke-width: 5;
  stroke-dashoffset: 150;
  transition: 0.7s ease-in-out;

}

.btn:hover {
  color: white;
  background: #1ca2ab;

}


.btn span {
  font-size: 110%;
  font-weight: 100;

}

.enrollform {
  text-align: center;
}
