.test-form {
    width: 350px;
    height: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 30px;
}

.test-form .fa-pencil {
    cursor: pointer;
}

.test-form .fa-pencil:hover {
    color: green;
}

.test-form .underline {
    text-decoration: underline;
    cursor: pointer;
}

.test-form .title {
    font-size: 26px;
    height: 43px;
    color: #272F6D;
    line-height: 31px;
}

.test-form .line {
    width: 247px;
    height: 10px;
    margin: 0px 0 15px 0;
    border-top: 2px solid #272F6D;
    align-items: center;
    justify-content: center;
    display: flex;
    color: red;
}

.test-form .field_title {
    font-size: 18px;
    line-height: 21px;
    display: flex;
    align-items: center;
    color: #272F6D;
}

.test-form input[type=text],
.test-form input[type=password] {
    margin: 10px 0;
    width: 341px;
    height: 41px;
    font-size: 18px;
    border: 1px solid #272F6D;
    border-radius: 3px;
}

.test-form input[readonly] {
    padding: 0;
    border: none;
    width: 315px;
}


.test-form .subtitle {
    width: 341px;
    height: 56px;

    font-family: 'Mont';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    display: flex;
    align-items: center;

    color: #000000;
}

.test-form .personal_info {
    margin-top: 10px;
    margin-bottom: 25px;
    width: 318px;
    height: 82px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 12px;
}

.test-form .personal_info .description {
    margin-top: 0;
    font-size: 10px;
    line-height: 13px;
    color: #000000;
    font-family: 'Mont';
    font-style: normal;
    font-weight: 300;
}

.test-form .sumbit {
    color: #FFFFFF;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 224px;
    height: 49px;
    background: linear-gradient(84.7deg, #262E6E 11.66%, #3F51B5 98.5%), #FFFFFF;
}

.test-form .sumbit.disabled {
    color: #000;

    background: linear-gradient(84.7deg, #2e2f38 11.66%, #4f515f 98.5%), #FFFFFF;
    cursor: not-allowed;
    opacity: 30%;
}

.test-form .emailSwap,
.test-form .phoneSwap {
    margin-top: 15px;
    font-size: 14px;
}
@media screen and (max-width: 420px) {
    .test-form {
        padding: 0;
        width: 250px;
    }
    .test-form input[type=text], .test-form input[type=password]{
        width: 100%;
    }
    .test-form .subtitle {
        width: 80%;
        font-size: 12px;
    }
    .test-form .personal_info{
        width: 80%;
    }
    .test-form .personal_info .description {
        font-size: 8px;
    }
    .test-form .auth_form, .test-form .fields{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}