.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.form--user-registration {
    position: relative;
    padding: 30px 0;
    border-radius: 10px;
    overflow: hidden;
}

.form__group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
}

.form__group--simple {
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
}

.form__label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form__input {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    color: #444;
}

.form__input:focus {
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.form__button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #1877f2;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.form__button:hover {
    background-color: #166fe5;
}

.message--password-reset {
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    background-color: #d0e5f5;
    color: #1c3d5a;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.form__message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.form__message--info {
    background-color: #d0e5f5;
    color: #1c3d5a;
}

.form__message--attention {
    background-color: #f5d0e0;
    color: #5a1c3e;
}