/*------------- #FORMS --------------*/


.tk-lp-component-form {
  width: 540px;
  max-width: 95%;
  margin: auto;
}

.tk-lp-form {
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 5px;
  line-height: 1.5;
  color: var(--tk-lp-form-color);
  box-shadow: var(--tk-lp-box-shadow-color);
  background-color: var(--tk-lp-white-color);

  a {
	-webkit-transition: all .3s linear;
	transition: all .2s linear;
	color: var(--tk-lp-link-color);
	display: inline-block;
	text-decoration: none;
	outline: 0;
	cursor: pointer;

	&:hover {
	  color: var(--tk-lp-accent-color);
	}
  }

  .tk-lp-delete-avatar {
	display: block;
	margin-top: 20px;
	font-size: 14px;
	color: var(--tk-lp-red-color);
	border: none;
	box-shadow: none;
	text-decoration: underline;
	text-decoration-color: transparent;
	background-color: transparent;

	&:hover {
	  text-decoration-color: var(--tk-lp-red-color);
	}
  }

  .tk-lp-button + .tk-lp-button {
	margin-top: 20px;
  }
}

.tk-lp-form-title {
  margin-bottom: 0.53em;
  line-height: 1.15em;
  text-align: center;
  font-size: var(--tk-lp-form-title-font-size);
  font-weight: var(--tk-lp-form-title-font-weight);
  color: var(--tk-lp-form-title-color);
}

.tk-lp-form-title-small {
  margin-bottom: 0.53em;
  margin-top: 1.5em;
  line-height: 1.15em;
  text-align: center;
  font-size: 24px;
  font-weight: var(--tk-lp-form-title-font-weight);
  color: var(--tk-lp-form-title-color);
}

.tk-lp-label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
  display: flex;
  justify-content: space-between;
  color: var(--tk-lp-form-title-color);
}

.tk-lp-form-item {
  margin-bottom: 25px;
}

.tk-lp-check,
.tk-lp-subscribe {
  display: flex;
}

.tk-lp-subscribe {
  .tk-lp-subscribe-text {
	margin-left: 20px;
	font-size: 14px;
  }
}

.tk-lp-check {
  .tk-lp-check-text {
	font-size: 14px;
  }
}

.tk-lp-remember {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tk-lp-change-avatar {
  display: flex;
  align-items: center;
  margin-top: 20px;

  .tk-lp-autor-avatar {
	width: 100px;
	height: 100px;
	min-width: 100px;
	min-height: 100px;
	margin-right: 30px;
	border-radius: 100%;
	overflow: hidden;
	display: flex;
	background-color: var(--tk-lp-border-grey-color);

	img {
	  margin: auto;
	}
  }
}

/*------------- Responsive Mode --------------*/


@media (max-width: 768px) {
  .tk-lp-change-avatar .tk-lp-autor-avatar {
	width: 60px;
	height: 60px;
	min-width: 60px;
	min-height: 60px;
	margin-right: 20px;
  }
}

@media (max-width: 420px) {
  .tk-lp-remember {
	flex-direction: column;
	align-items: flex-start;
  }

  .tk-lp-link-lost {
	margin-top: 15px;
  }
}