.form {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 1;
}
.form-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 30px;
}
.form-row.row{
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.form-title {
    color: #4912ED;
    font-size: 40px;
    line-height: 40px;
}
.form-input {
    border-radius: 30px;
    border: 1px solid #4912ED;
    height: 60px;
    width: 100%;
    color: #707D95;
    font-size: 20px;
    line-height: 20px;
    padding: 20px 24px;
}
.form-input__label {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: #1A0038;
    margin-bottom: 11px;
}
.form-btn {
    color: white;
    background: #4912ED;
    border-radius: 44px;
    height: 60px;
    padding: 20px 70px;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    border: none;
    cursor: pointer;
    font-weight: 600;
}
.form-btn.row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 0 0 25px;
    padding: 20px 30px;
}
.form-btn.row img{
    margin-right: 10px;
}
