body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 8px;
  }
 
  ::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.20);
    border-radius: 8px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.35);
  }


.debug {
    border: 1px solid red;
}

.wrapper {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #060F1E;
    color: white;
    overflow-y: auto;
    overflow-x: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0px 20px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.header {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 28px 0px 61px 0px;
}

.logo {
    max-width: 180px;
}

.contact-button {
    text-decoration: none;    
    cursor: pointer;
    background-color: #5D71FF;
    border: none;
    color: white;
    padding: 7px 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 18.2px */
}

.contact-button:hover {
    background-color: #7D8DFF;
}   
.contact-button:active {
    border-radius: 8px;
    background:  #5D71FF;
    box-shadow: 0px 0px 0px 4px rgba(93, 113, 255, 0.15);
}

.main-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    max-width: 100%;
}

.text-content {
    max-width: 560px;
    flex-shrink: 0;
}

.title{
    color: #FFF;
    font-family: Sora;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 64px; /* 114.286% */
}

.subtitle {
    max-width: 505px;
    color: rgba(255, 255, 255, 0.70);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 120% */
}

.disclaimer {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.35);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 120% */
}

.email-form {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 100%;
}

.submit-button { 
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 20%;
    background: transparent;
    height: 52px;
    width: 52px;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-input {
    background: transparent;
    inset: 0;
    border: none;
    border-bottom: 4px solid #fff;
    outline: none;
    min-width: 200px;
    max-width: 100%;
    padding-right: 70px;
    padding-bottom: 10px;
    padding-top: 10px;
    color:  rgba(255, 255, 255, 0.70);
    font-family: Sora;
    font-size: 38px;
    font-style: normal;
    font-weight: 500;
    line-height: 56px; /* 147.368% */
}

.email-input:focus {
    border-bottom-color: #5D71FF;
}

.success .email-input  {
    border-bottom-color: #72D155;
    color: #72D155;
}

.error .email-input  {
    border-bottom-color: #FF3A30;
    color: #FF3A30;
} 

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.70);
}

.success .email-input::placeholder {
    color: #72D155;
}

.error .email-input::placeholder {
    color: #FF3A30;
}

.input-helper-text {
    padding-top: 8px;
    color: rgba(255, 255, 255, 0.35);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 120% */
}

.success .input-helper-text {
    color: #72D155;
}

.error .input-helper-text {
    color: #FF3A30;
}

.computer-image {
    max-width: 100%;
}

.coming-soon-banner {
    margin-top: 74px;
    padding: 10px 0px;
    display: flex;
    justify-content: center;
    white-space: nowrap;
    background-color: #5D71FF;
    color: white;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 120% */
    
}

footer {
    margin-top: 74px;
    padding: 0px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-text {
    color: rgba(255, 255, 255, 0.90);
    text-align: center;
    font-family: Sora;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 133.333% */
}

.social-links {
    display: flex;
    gap: 20px;
    padding: 28px 0px;
}

.social-icon {
    width: 24px;
    height: 24px;
    color: #FFFFFF59;
}

.copyright {
    color: rgba(255, 255, 255, 0.70);
    text-align: center;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 120% */
    opacity: 0.5;
    padding: 0px 0px 40px 0px;
}

@media screen and (max-width: 1050px) {
    .main-content {
        flex-direction: column;
    }

    .header {
        max-width: 580px;
    }

}

@media screen and (max-width: 600px) {

    .container{
        inset: 10px;
        max-width: 350px;

    }

    .header {
        padding: 20px 0px 40px 0px;
        max-width: 100%;
    }

    .logo {
        max-width: 130px;
    }


    .title {
        color: #FFF;
        font-size: 34px;
        font-style: normal;
        font-weight: 600;
        line-height: 40px; /* 117.647% */
    }

    .subtitle {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; /* 150% */
    }

    .disclaimer {
        margin-top: 14px;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; /* 150% */
    }

    .email-input {
        max-width: 100%;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px;
    }

    .submit-button {
        top: 0;
    }

    .input-helper-text {
        font-family: Poppins;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 18px; 
    }

    .computer-image {
        max-width: 100%;
    }

    .coming-soon-banner {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: -0.64px;
    }

    .footer-text {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px; /* 125% */
    }

    .copyright {
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px; /* 133.333% */
    }
}