.container-form-profile {
    max-width: 840px;
    width: 100%;
    background: var(--st-body-bg);
    border-radius: .5em;
    margin: auto;
}

.container-form-profile > div {
    padding: 1em;
}

.container-form-profile .form-credentials {
    display: flex;
    flex-direction: column;
    row-gap: 1em;
}

.container-form-profile .form-description {
    display: flex;
    flex-direction: column;
    row-gap: .5em;
    text-align: center;
    color: var(--st-text-primary);
}

.container-form-profile .form-description .link, .container-form-profile .form-description .btn {
    color: var(--st-text-secondary);
}

.container-form-profile .form-description .btn {
    background: var(--st-tertiary-bg);
    cursor: pointer;
    font-size: 16px;
    padding: .5em 1em;
    transition: all 0.5s;
    border-radius: 10px;
    width: auto;
    position: relative;
    border: 1px solid transparent;
}

.container-form-profile .form-description .btn::after {
    height: auto;
    content: ">";
    font-weight: 400;
    position: absolute;
    right: .5em;
    opacity: 0;
}

.container-form-profile .form-description .btn:hover {
    background: var(--st-body-bg);
    border: 1px solid var(--st-tertiary-bg);
    transition: all 0.5s;
    border-radius: 10px;
    padding: .5em 2em .5em 1em;
    color: var(--st-text-secondary);
}

.container-form-profile .form-description .btn:hover::after {
    opacity: 1;
    transition: all 0.5s;
    color: var(--st-text-primary);
}

.container-form-profile .field-group {
    display: flex;
    flex-direction: column;
    row-gap: .5em;
}

.container-form-profile .field-group input {
    max-width: 400px;
    width: 100%;
    background: 0;
    border: 0;
    outline: none;
    font-size: 18px;
    transition: padding 0.3s 0.2s ease;
    color: var(--st-text-primary);
    padding: .5em;
}

.container-form-profile .field-group .line {
    width: 100%;
    height: 3px;
    background: var(--st-main-bg);
}

.container-form-profile .field-group .line:after {
    content: " ";
    float: right;
    width: 100%;
    height: 3px;
    transform: scalex(0);
    background: var(--st-tertiary-bg);
    transition: transform 0.3s ease;
}

.container-form-profile .field-group input:focus + .line:after {
    transform: scaleX(1);
}

.container-form-profile .error-alert ul {
    padding: .25em 0;
    margin: 0;
}

.container-form-profile .error-alert li {
    color: red;
    font-size: 12px;
    list-style: none;
}

.container-form-profile hr {
    border: 1px solid var(--st-tertiary-bg)
}
