.form-input:read-only {
  color: grey;
}

.profile-group {
  margin-top: 20px;
  box-sizing: border-box;
  display: flex;
  gap: 15px;
  justify-content: end;
  flex-wrap: wrap;
}

.btn-profile {
  background-color: #f47b20;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 40px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  max-width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
}

.btn-profile.logout {
  background-color: #e13838;
}

.btn-profile:hover {
  background-color: grey;
}

@media (max-width: 767px) {
  .btn-profile {
    flex-grow: 1;
  }
}