:root {
  --button-color: #E5007D;
  --text-color: #000000;
  --secondary-color: #000000;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./fonts/Inter-Bold.woff2') format('woff2');
}

.header {
  width: 100vw;
  background-color: #fff;
  height: 80px;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #EEEFF1;
  font-size: 16px;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


.logo {
  background-image: url(home.svg);
  background-repeat: no-repeat;
  width: 100%;
  height: 80px;
  background-position: center;
  text-align: center;
}

.logo-button{
  width: 182px;
  padding: 61px 91px;
}


.hidden {
  display: none !important;
}

label, input, button {
  display: block;
  margin-bottom: 10px;
}

input, button {
  padding: 15px;
  border: 1px solid #ccc;
  font-size: 18px; 
}

form {
  max-width: 450px;
  background-color: #fff;
  padding: 50px;
  border-radius: 10px;
}

button {
  background-color: var(--button-color);
  color: white;
  cursor: pointer;
  border-radius: 7px;
  height: 55px;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 30px;
}

.main-wrapper {
  flex: 1;
}
