﻿.btn_theme {
  border: none;
}

.btn_theme{
  width: 100%;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn_theme:hover {
  color: var(--primary);
  background-color: var(--white);
  border-color: var(--white);
}

.form-control {
  font-family: "Poppins", sans-serif;
  width: 100%;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--white);
  background-color: var(--menuDark);
}

.form-control:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: var(--white);
}

.form-control::placeholder {
  color: var(--secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.form-control {
  -webkit-appearance: none;
  text-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}