body {
    background-color: #EBEEF1;
    font-family: 'Rubik', sans-serif;
}

body, html{
    margin:0;
    padding:0;
    height: 100%;
}

.header {
    display: flex;
    justify-content: center;
    height:100%;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }


.logo-container {
    width: 400px;
    height: 50vh;
    background-image: url("stagger-logo.png");
    background-position: center; 
    background-repeat: no-repeat;
    background-size: contain;
}


.DescriptionText {
    text-align: center;
    padding: 20px;
    max-width: 50%;
}



.formContainer {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.inputField {
    padding: 10px 24px;
    border-radius: 30px;
    background-color: #FFFFFF;
    border: none;
}

.sendButton {
    padding: 10px 24px;
    border-radius: 30px;
    background-color: #2B976C;
    border: none;
    color: white;
}

.appStoreRow {
    display: flex;
}

.appStoreBadge {
    width: 282px;
    height: 84px;

}

@media only screen and (max-width: 600px) {
    .logo-container {
        width: 200px;
        height: 20vh;
        margin-bottom: 20px;
    }

    .DescriptionText {
        max-width: 100%;
    }

    .appStoreRow {
        flex-direction: column;
        gap: 25px;
    } 
  }