body {
    padding: 0;
    margin: 0;
    background-color: #77C5F1;
    font-family: Poppins, sans-serif;
    font-size: 1.2rem;
    color:white;
    min-height: 100vh;;
}

.join-main-section {
    display: flex;
    justify-content: space-between;
    align-items:center;
    flex-grow: 1;
}

.join-text {
    font-size: 3em;
    font-weight: 100;
    margin: 0;
}

.subtitle {
    font-size: 1em;
    width:85%;
    font-weight: 100;
}

.join-form {
    background-color: #26475A;
    width: 40vw;
    max-width:50%;
    padding: 2rem 4rem;
    border-radius: 20px;
}

.input-group {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.input-group:last-child {
    margin-bottom: 0;
}

.input-group label {
    font-weight: bold;
    margin-bottom: .5rem;
}

.input-group input {
    background: none;
    outline: none;
    border: 1px solid #167FC9;
    font-size: 1em;
    padding:.5em;
    color:inherit;
    border-radius: 5px;
}

.input-group input:focus {
    border-color: #91b6d0;
}

@media (max-width: 900px) {
    .join-main-section {
        flex-direction: column;
        justify-content: center;
    }
    .join-form {
        width: 40vw;
        max-width: inherit;
        margin: 1rem 0;
        font-size: 1em;
    }
    .footer-nav {
        font-size: .7em;
    }
}

@media (max-width: 400px) {
    .join-text {
        font-size: 2em;
        font-weight: 100;
        margin: 0;
    }
    
    .subtitle {
        font-size: .7em;
        width:85%;
        font-weight: 100;
    }
    
    }
.join-page-circle-1 {
    position:absolute;
    overflow: hidden;
    width: 45vw;
    height: 45vw;
    bottom: 50%;
    right:0;
    
    z-index: -1;
}

.join-page-circle-1::before {
    content: '';
    transform: translate(40%, 00%);
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: white;
    opacity: .3;
}

