.app {
  display: flex;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #f4f7f6;
  min-height: 100vh;
  margin: 0;
}

.menu {
  background-color: #333;
  padding: 15px;
  width: 250px;
  height: 100vh;
  box-sizing: border-box;
}

.menu a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.profile-content {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.profile-info,
.profile-form {
  background: white;
  padding: 20px;
  padding-top: 100px;
  padding-bottom: 100px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(77, 60, 60, 0.1);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-top : 110px;
}

.profile-info h2,
.profile-form h2 {
  color: #333;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.form-group label {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}

.form-group input,
.form-group select {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  font-size: 16px;
}

button {
  padding: 10px;
  border: none;
  border-radius: 4px;
  margin-top: 10px;
  cursor: pointer;
  font-weight: bold;
}

button[type='submit'] {
  background-color: #5cb85c;
  color: white;
}

button[type='button'] {
  background-color: #d9534f;
  color: white;
  margin-left: 8px;
}

button:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .menu {
    width: 200px;
  }

  .profile-content {
    padding: 10px;
  }


}
