div.parent {
    padding-top: 60px;
    height: auto;
    margin-bottom: 60px;
    background-color: var(--secondary-color-30);
}
div.parent div.child {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 80vh;
}
h1 {
    font-size: 43px;
    line-height: 1.3;
    font-weight: 500;
}
h1 span {
    font-size: 48px;
    font-weight: 600;
    background: linear-gradient(280deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-clip: text;
}
div.parent div.tab.start {
    display: flex;
    align-items: center;
}
div.parent div.tab.start h2 {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 20px;
    color: #303030;
}
div.parent div.tab {
    height: 100%;
    flex: 1
}

div.parent div.tab.end {
    width: 30%;
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
}
div.form {
    flex: 1;
    height: auto;
    background-color: #fff;
    padding: 25px;
    box-shadow: rgba(0, 0, 0, 0.09) 0 3px 12px;
    border-radius: 27px;
}
div.form p.title {
    font-size: 24px;
    font-weight: 600;
}
div.form p.subtitle {
    margin:10px 0 25px 0;
    font-size: 16px;
    color: #353535;
} 

div.form div.input-container {
    display: flex;
    margin-top: 14px;
    gap: 14px;
}
div.form div.input-container input,
div.form div.input-container select {
    flex: 1;    
    padding: 12px;
    font-size: 16px;
    border-radius: 7px;
    border: 1px solid #d3d3d3;
    outline: none;
}

div.form div.input-container input:focus,
div.form div.input-container select:focus {
    border-color: #303030;
}

div.form div.input-container input:hover:not(:focus),
div.form div.input-container select:hover:not(:focus) {
    border-color: #969696;
}

button.submit {
    width: 100%;
    border: 0;
    padding: 12px;
    font-size: 14px;
    border-radius: 50px;
    margin: 16px 0 0 0;
    font-weight: 600;
    color: #fff;
    background-color: #b8b8b8;
    text-transform: uppercase;
}
button.submit.active {
    cursor: pointer;
    color: #fff;
    background-color: var(--primary-color);
}
button.submit.active:hover {
    opacity: 0.9;
}
div.form p.info {
    font-size: 15px;
    color: #353535;
    margin-top: 25px;
    border-top: 1px dashed #e8e8e8;
    padding: 25px 0 0 0;
    text-align: center;
    & a {
        color: var(--primary-color);
        text-decoration: none;
    }
    & a:hover {
        text-decoration: underline;
    }
}

@media only screen and (max-width: 1200px) {
    div.parent div.child {
        margin-left: 30px;
        margin-right: 30px;
    }
    h1 {
        font-size: 32px;
        span {
            font-size: 37px;
        }
    }
    div.parent div.tab.start h2 {
        font-size: 18px;
    }

}
@media only screen and (max-width: 1040px) { 
    div.parent div.tab.end {
        width: auto;
    }
    div.parent {margin-bottom: 30px;}
    
}
@media only screen and (max-width: 940px) { 
    div.parent div.child {
        display: grid;
        align-content: space-evenly;
        height: auto;
        min-height: 45vh;
        padding-bottom: 30px;
    }
    div.parent div.child div.tab.start div {
        margin-top: 10vh
    }
    div.parent div.child div.tab {
        height: auto;
    }
    div.parent div.child div.tab.start br {
        display: none;
    }
    h1 {
        font-size: 32px;
        span {
            font-size: 32px;
            margin-left: 10px;
        }
    }
    div.parent div.tab.start h2 {
        margin-top: 10px;
    }
    div.form p.title, div.form p.subtitle {
        display: none;
    }
    div.form {
        padding-top: 19px;
    }
    
}
@media only screen and (max-width: 580px) {     
    div.form div.input-container {
        display: grid;
    }

    
}
