@import "./header.css";
@import "./footer.css";


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  /* padding-top: 35px; */
  padding-bottom: 190px;
  min-height: 100vh;
  position: relative;
  background-color: #ebebeb;
  --primary-color: #2b6bb5;
  --secondary-color: #1e1e1e;
  --text-color: #f6f6f6;
  --input-color: #1f4d81;
  --button-color: #1961a5;
  transition: all 0.2s linear;
  z-index: 0;
  
}
[theme='dark'] {
  background-color: #1e1e1e;
  --input-color: #1e1e1e;
  --primary-color: #2b6bb5;
  --secondary-color: #f6f6f6;
}
a {
  text-decoration: none;
}
.error-center{
  text-align: center;
}
.error-start{
  text-align: start;
}
.error-message{
  font-family: 'montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: red;
}
li {
  list-style: none;
}
.icon {
  path {
    stroke: var(--secondary-color);
  }
}
@media (max-width: 375px) {
  body {
    padding-top: 0;
  }
}
