.register-btn {
  display: grid;
  background: #0072BC;
  border-radius: 5px;
  border: none;
  padding: 5px 20px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #3A3A3A;
  transition: background 0.3s;
  transition: border 0.3s;
}
.register-btn__title {
  font-size: 19px;
  color: #fff;
}
.register-btn__red {
  color: #D22727;
}
.register-btn__subtitle {
  font-size: 1.2rem;
  color: #fff;
}
.register-btn:hover, .register-btn:focus {
  background: #3A3A3A;
  border: 1px solid #fff;
}
@media (min-width: 786px) {
  .register-btn__title {
    font-size: 2.1rem;
  }
  .register-btn__subtitle {
    font-size: 1.2rem;
  }
}

.footer {
  background: #3A3A3A;
  margin-top: 100px;
}
.footer__content {
  display: grid;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer__top {
  display: grid;
  gap: 20px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer__logo img {
  height: 50px;
  width: auto;
}
.footer__logo-text {
  font-size: 2.4rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}
.footer__register {
  justify-self: flex-start;
}
.footer__mid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}
.footer__nav-list {
  display: grid;
  gap: 15px;
  list-style: none;
}
.footer__nav-link {
  position: relative;
  padding-left: 25px;
  color: #F2F2F2;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.4rem;
}
.footer__nav-link:hover, .footer__nav-link:focus {
  text-decoration: underline;
}
.footer__nav-link::before {
  content: url("https://szpitalglubczyce.evaldor.com/img/info_black_24dp.svg");
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.footer__info {
  display: grid;
  gap: 10px;
  align-content: flex-start;
}
.footer__info:nth-child(2n) {
  justify-self: flex-end;
}
.footer__info-title {
  font-size: 1.8rem;
  color: #F2F2F2;
  font-weight: bold;
}
.footer__info-list {
  display: grid;
  gap: 10px;
  list-style: none;
}
.footer__info-element {
  font-size: 1.4rem;
  color: #F2F2F2;
}
.footer__bottom {
  display: grid;
  gap: 20px;
}
.footer__bottom::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #F2F2F2;
}
.footer__bottom-list {
  display: grid;
  gap: 20px;
  list-style: none;
}
.footer__bottom-link {
  font-size: 1.6rem;
  font-weight: 500;
  color: #F2F2F2;
  text-decoration: none;
}
.footer__bottom-link:hover, .footer__bottom-link:focus {
  text-decoration: underline;
}
.footer__bottom-copy {
  font-size: 1.2rem;
  font-weight: 500;
  color: #EEEEEE;
}
@media (min-width: 786px) {
  .footer__top {
    display: flex;
    justify-content: space-between;
  }
  .footer__mid {
    grid-template-columns: repeat(5, 1fr);
  }
  .footer__info:nth-child(2n) {
    justify-self: flex-start;
  }
  .footer__bottom-list {
    display: flex;
    gap: 80px;
  }
}/*# sourceMappingURL=component.css.map */