
/* RESETTING THE DEFAULT STYLES */
input,
select,
textarea,
fieldset,
legend,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
}
	
/* LABEL - BLOCK */
form > div > label,
form > div > div > label {
  display: block;
  font-size: 1.4rem;
}

/* CUSTOMIZING THE INPUT AND TEXTAREA FIELDS */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  padding: 3% 0% 3% 20px;
	margin: 0 0 4% 0;
	color: #f2f1f6;
  background-color: #000033;
  border: 1px solid;
	border-top-color: #262757;
	border-right-color: #262757;
	border-bottom-color: #262757;
	border-left-color: #262757;
  border-radius: 6px;
}

textarea {
  min-height: 110px;
  resize: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(-input-border-focus);
  box-shadow: 0 0 0 2px var(-color-accent);
  outline: 3px solid transparent;
}

/* FOR LABEL LINKS */
label > a {
  color: var(-color-accent);
  text-decoration: none;
  font-weight: 500;
}


/* FOR SELECT ELEMENT */
select {
  /* resets for further consistency */
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: inherit;
  outline: none;
  border: none;
  width: 100%;
  padding: 0.25em 0.5em;
}

.select {
  width: 100%;
  border: 1px solid  #fffff;
  border-radius: 0.25em;
  padding: 0.25em 0.5em;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1.1;
  background-color:  #fffff;
  background-image:  #fffff;
  position: relative;

  display: grid;
  grid-template-areas: "arrow-place";
  align-items: center;
}

/* select arrow */
.select::after {
  content: "";
  width: 0.9em;
  height: 0.7em;
  background-color: var(-color-accent);
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}

select,
.select::after {
  grid-area: arrow-place;
  justify-self: end;
}

select:focus + .focus {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 2px solid var(-color-accent);
  border-radius: inherit;
}

/* FOR BUTTONS */
button[type="submit"] {
  border: none;
  background-color: transparent;
  font-family: inherit;
  padding: 0;
 cursor: pointer;
  font-size: 1.5rem;
}

/* STYLING BUTTONS */
.buttons {
  display: flex;
  align-items: center;
  gap: 3rem;
}

button[type="submit"] {
  background: #f2f1f6;
  color: #000033;
  padding: 16px;
  border-radius: 4px;
}

button > img {
  filter: brightness(0) invert(1);
}

	
	::placeholder {
  color: #f2f1f6;
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12-18 */
  color: #f2f1f6;
}

.inlinks-form {float: left;width: 45%;padding: 0;margin: 0 5% 0 0;box-sizing: border-box}	


@media screen and (max-width: 600px) {
.inlinks-form {float: left;width: 100%;padding: 0;margin: 0;box-sizing: border-box}	
}