@import url('reset.css');
@import url('fonts.css');

* {
  font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
  height: 100svh;
  height: 100vh;
}

body {
  background-color: #000;
  width: 100%;
  overflow-x: hidden;
  height: 100svh;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.container {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 425px;
  min-width: 320px;
  height: 100svh;
  height: 100vh;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 37px 16px;
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 100svh;
  min-height: 100vh;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.reg {
  margin-top: 45px;
}


.buttons {
  gap: 16px;
  position: fixed;
  bottom: 32px;
  z-index: 2;
  padding: 0 16px;
  width: 100%;
  margin-top: auto;
  width: calc(100% - 32px);;
}

.buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 12px 22px;
  border-radius: 14px;
  background: #FD409D;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
}
