header {
    text-align: center;
    color: rgb(51, 0, 111);
    font-size: 70px;
}

body {
    text-align: center;
    background-color: #e7d8ea;
    font-family: Tahoma, sans-serif;
}

#subtitle {
    color: rgb(145, 123, 76);
}

nav {
    width: 80%;
    margin: 0 auto;
}

.navbar ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
}

.navbar a {
    text-decoration: none;
    display: block;
    padding: 5px;
    text-align: center;
}

.navbar li {
    float: inline-start;
}

h2 {
    text-align: center;
}

.box {
    border: 50px solid white;
    background-color: white;
    border-radius: 15px;
    width: 250px;
    height: 250px;
    margin: auto;
}

#welcome {
    color: rgb(51, 0, 111);
    font-size: 30px;
}

.sign_email {
    font-size: 20px;
    padding: 10px;
    background-color: rgb(224, 224, 224);
    border: rgb(224, 224, 224);
    width: 250px;
    height: 50px;
    margin-bottom: 10px;


}

.sign_password {
    font-size: 20px;
    padding: 10px;
    background-color: rgb(224, 224, 224);
    width: 250px;
    height: 50px;
    border: rgb(224, 224, 224);
}

.sign_button {
    width: 150px;
    height: 50px;
    margin-top: 10px;
    background-color: rgb(51, 0, 111);
    color: white;
    font-size: 1.2em;
    border-radius: 30px;
    border: solid rgb(51, 0, 111);
}

#msg {
  font-size: 0.9rem;
  margin-top: 8px;
  text-align: center;
  transition: 0.3s;
}

#logoutBtn {
  color: rgb(51, 0, 111);
  background: none;
  border: none;
  font-size: 1em;
  cursor: pointer;
}

#logoutBtn:hover {
  color: rgb(102, 0, 222);
}

.profile-card {
  max-width: 520px;
  margin: 1.5rem auto;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
}

.row {
  display: flex;
  gap: 12px;
  margin: 0.5rem 0;
  align-items: center;
}

.row label {
  width: 110px;
  text-align: right;
}

.row input {
  flex: 1;
  padding: 8px;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
}

.actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 10px;
}

.btn {
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  background: #4f46e5;
  color: #fff;
  cursor: pointer;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.navwrap {
  text-align: center;
  margin-bottom: 8px;
}

.navwrap a {
  margin-right: 12px;
  color: rgb(51, 0, 111);
  text-decoration: none;
}

.navwrap li {
    float: inline-start;
}

