/* fonts
 ******************************/
/* Karla font
 ***************/
@import url("https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&display=swap");
/* Colors
 ******************************/
/* Primary
 ***************/
/* Global Variables
 ******************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100vh;
  background-color: #121725;
}

/* Body Variables
 ******************************/
main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

main::before {
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("../images/mobile/image-host.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  opacity: .1;
  z-index: -1;
}

.background-img {
  height: 100%;
  position: absolute;
  object-fit: cover;
  opacity: 0.1;
}

.pod-request-container {
  margin: 36px;
  padding: 110.5px 0;
  width: 303px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.pod-request-container__logo {
  width: 135px;
}

.pod-request-container__inner-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pod-request-container__title {
  margin-bottom: 16px;
  font-family: 'Chivo';
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
  color: #54E6AF;
}

.pod-request-container__title span {
  color: #FFFFFF;
}

.pod-request-container__description {
  font-family: 'Chivo';
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: #C2CBE5;
}

.pod-request-container__partners {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pod-request-container__partner-logo:nth-child(1) {
  width: 56px;
}

.pod-request-container__partner-logo:nth-child(2) {
  width: 45px;
}

.pod-request-container__partner-logo:nth-child(3) {
  width: 73px;
}

.pod-request-container__partner-logo:nth-child(4) {
  width: 76px;
}

.pod-request-container__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pod-request-container__email-input {
  padding-left: 30px;
  width: 100%;
  height: 44px;
  border: 2px solid #2C344B;
  background-color: #2C344B;
  border-radius: 999px;
  font-family: 'Chivo';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 200%;
  color: #FFFFFF;
}

.pod-request-container__email-input::placeholder {
  color: #ffffff80;
}

.pod-request-container__email-input:focus {
  outline: none;
}

.pod-request-container__email-input--required {
  border: 2px solid #FB3E3E;
}

.pod-request-container__submit-btn {
  width: 100%;
  height: 44px;
  border: none;
  position: relative;
  font-family: 'Chivo';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 200%;
  color: #121725;
  background: #54E6AF;
  box-shadow: 0px 2px 4px rgba(84, 230, 175, 0.14);
  border-radius: 28px;
}

.pod-request-container__form-required-text {
  display: none;
  font-family: 'Chivo';
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  color: #FB3E3E;
}

.pod-request-container__form-required-text--active {
  display: block;
}

/* responsivnes
 ******************************/
@media only screen and (min-width: 768px) {
  main {
    overflow-x: hidden;
  }
  main::before {
    width: 460px;
    height: 868px;
    background-image: url("../images/desktop/image-host.jpg");
    top: -1px;
    right: 0;
    opacity: 1;
  }
  main::after {
    content: '';
    width: 232px;
    height: 104px;
    background-image: url("../images/desktop/bg-pattern-dots.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 818px;
    right: -128px;
  }
  .pod-request-container {
    margin: 156px 132px 156px 44px;
    padding: 0;
    width: 592px;
    align-items: flex-start;
    gap: 104px;
  }
  .pod-request-container__inner-content {
    padding-top: 88px;
    padding-right: 45px;
    width: 100%;
    background-color: #121725;
  }
  .pod-request-container__text-content {
    max-width: 448px;
  }
  .pod-request-container__title {
    margin-bottom: 24px;
    height: 174px;
    font-size: 48px;
    line-height: 120%;
    text-align: start;
  }
  .pod-request-container__description {
    text-align: start;
    font-size: 18px;
    line-height: 150%;
  }
  .pod-request-container__partners {
    padding-top: 24px;
    justify-content: flex-start;
    gap: 40px;
    order: 3;
  }
  .pod-request-container__partner-logo:nth-child(1) {
    width: 96px;
  }
  .pod-request-container__partner-logo:nth-child(2) {
    width: 78px;
  }
  .pod-request-container__partner-logo:nth-child(3) {
    width: 125px;
  }
  .pod-request-container__partner-logo:nth-child(4) {
    width: 129px;
  }
  .pod-request-container__form {
    width: 448px;
    align-items: flex-start;
    position: relative;
  }
  .pod-request-container__email-input {
    height: 52px;
    padding-left: 26px;
  }
  .pod-request-container__submit-btn {
    width: 173px;
    position: absolute;
    top: 4px;
    right: 4px;
  }
  .pod-request-container__form-required-text {
    margin-left: 32px;
  }
}

@media only screen and (min-width: 1440px) {
  main {
    overflow-x: hidden;
  }
  main::before {
    width: 960px;
    height: 654px;
    background-image: url("../images/desktop/image-host.jpg");
    top: 152px;
    right: -64px;
  }
  main::after {
    position: absolute;
    top: 755px;
    right: 0;
  }
  .pod-request-container {
    margin: 153px 544px 153px 160px;
    width: 736px;
  }
  .pod-request-container__inner-content {
    padding-right: 78px;
  }
  .pod-request-container__text-content {
    max-width: 100%;
  }
  .pod-request-container__title {
    margin-bottom: 24px;
    height: 116px;
  }
  .pod-request-container__description {
    max-inline-size: 448px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .pod-request-container__submit-btn {
    overflow: hidden;
    cursor: pointer;
  }
  .pod-request-container__submit-btn::before {
    content: 'Request Access';
    width: 100%;
    height: 100%;
    border-radius: 28px;
    position: absolute;
    background-color: #FFFFFF;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    pointer-events: none;
  }
  .pod-request-container__submit-btn:hover::before {
    opacity: 0.5;
  }
}
