.container1 {
    width: 100%;
    max-width: 66.9rem;
    margin-left: auto;
    margin-right: auto;
    z-index: 100;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: block;
    top: -60px;
    bottom: 0;
    left: 0;
    right: 0;
}

.title {
  color: #eee;
  font-family: sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin-top: 30px;
}

.image {
  margin-top:-80px;
  width:90px;
  float:right;
}

.image1 {
  margin-right:80px;
  width:130px;
  float:right;
}

.subtitle {
  color: #eee;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

#subtitle {
  color: #eee;
  font-family: sans-serif;
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  margin-top: 5px;
  background-color: #06b;
  border-radius: 12px;
  padding-top: 5px;
}

.input-container {
  height: 50px;
  position: relative;
  width: 100%;
}

.ic1 {
  margin-top: 40px;
}

.ic2 {
  margin-top: 30px;
 
}

.ic3 {
  margin-top: 40px;
  padding-left: 10px;
 
}

.input {
  background-color: #303245;
  border-radius: 12px;
  border: 0;
  box-sizing: border-box;
  color: #eee;
  font-size: 18px;
  height: 100%;
  outline: 0;
  padding: 4px 20px 0;
  width: 100%;
}

.cut {
  border-radius: 10px;
  height: 20px;
  left: 20px;
  position: absolute;
  top: -20px;
  transform: translateY(0);
  transition: transform 200ms;
  width: 76px;
}

.cut-short {
  width: 50px;
}

.cut-short1 {
  width: 195px;
}

.input:focus ~ .cut,
.input:not(:placeholder-shown) ~ .cut {
  transform: translateY(8px);
  background-color: #15172b;
}

.placeholder {
  color: #65657b;
  font-family: sans-serif;
  left: 20px;
  line-height: 14px;
  pointer-events: none;
  position: absolute;
  transform-origin: 0 50%;
  
  transition: transform 200ms, color 200ms;
  top: 20px;
}

.input:focus ~ .placeholder,
.input:not(:placeholder-shown) ~ .placeholder {
  transform: translateY(-30px) translateX(10px) scale(0.75);
}

.input:not(:placeholder-shown) ~ .placeholder {
  color: #808097;
}

.input:focus ~ .placeholder {
  color: #08d;
}

.submit {
  box-sizing: border-box;
  cursor: pointer;
  font-size: 18px;
  height: 50px;
  margin-top: 38px;
  transition: all .2s;
	display: flex;
  text-align: center;
  width: 100%;
  border: 1px solid var(--light-green);
	color: var(--light-green);
	text-align: center;
	background-color: transparent;
	border-radius: .5rem;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	font-family: Open Sans, sans-serif;
	font-weight: 800;
	line-height: 1.75rem;
	text-decoration: none;
	transition: all .2s;
}

.submit:active {
  background-color: #06b;
}

.button {
	border: 1px solid var(--light-green);
	color: var(--light-green);
	text-align: center;
	background-color: transparent;
	border-radius: .5rem;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-top: 5px;
	padding: .75rem 1.25rem;
	font-family: Open Sans, sans-serif;
	font-weight: 800;
	line-height: 1.75rem;
	text-decoration: none;
	transition: all .2s;
	display: flex
}

.submit:hover {
	background-color: var(--light-green);
	color: var(--white)
}

#status {
  width: 90%;
  max-width: 500px;
  text-align: center;
  padding: 10px;
  margin: 0 auto;
  border-radius: 8px;
}
#status.success {
  background-color: transparent;
  animation: status 4s ease forwards;
}
#status.error {
  background-color: transparent;
  color: white;
  animation: status 4s ease forwards;
}
@keyframes status {
  0% {
    opacity: 1;
    pointer-events: all;
  }
  90% {
    opacity: 1;
    pointer-events: all;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}

#popup-container {
  display:none;
  width: 100%;
    max-width: 66.9rem;
    margin-left: auto;
    margin-right: auto;
    z-index: 100;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
#line {
  display: flex;
}