.profile {
    padding: 2em 0;
}

h1.profile__title {
    font-weight: 600;
    font-size: 1.75em;
    line-height: 125%;
    text-align: center;
}

.profile__form {
    max-width: 30em;
    margin: 0 auto;
    background: #fff;
    border-radius: 0.5em;
    padding: 0 1em;
}

.profile__form-group {
    padding: 1em 1em 0.25em;
    position: relative;
}

.profile__form-group label {
    display: block;
    margin-bottom: 0.5em;
    margin-left: 1em;
    font-weight: 500;
    font-size: 0.875em;
    color: #555;
}

.profile__form-input {
    border-radius: 0.925em;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 1em 3em;
    box-sizing: border-box;
}

.profile__form-input:focus {
    border-color: #007BFF;
    box-shadow: 0 0 0 0.2em rgba(0, 123, 255, 0.25);
}

.profile__form-button {
    text-align: center;
    padding: 1.5em 1em 0;
}

.profile__form-submit {
    width: 100%;
    border: 0;
    background: #6C5FBC;
    color: #FFF;
    padding: 1.25em;
    border-radius: 0.925em;
    cursor: pointer;
    transition: 0.3s;
}

.profile__form-submit:hover {
    background-color: #978BDE;
}

/* Адаптив: на узких экранах уменьшаем отступы */
@media (max-width: 480px) {
    .profile__form {
        padding: 1.5em 0;
    }
}
