* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

.body {
  background-color: #fff7fb;
  padding-top: 88px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  align-items: center;
  padding: 14px 50px;
  background-color: #ffbfec;
}


.nav-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #d85590;
}

.nav-name {
  font-size: 28px;
  font-weight: 700;
  color: #c93779;
  margin-left: 12px;
}

.menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  
}

.menu a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  color: #d85590;
  transition: 0.3s ease;
}

.menu a:hover {
  color: #ea1068;
  transition: 0.3s ease;
}

.menu img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #c93779;
  cursor: pointer;
}
/* ===== Clock in Navbar ===== */
.nav-clock {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #c93779;
  line-height: 1.3;
  white-space: nowrap;
}

#dateSpan {
  font-size: 13px;
}

#timeSpan {
  font-size: 14px;
  font-weight: 700;
  color: #a81f5a;
}

.form-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 40px;
  margin: 48px auto;
  padding: 10px;
  max-width: 400px;
}
.form-heading{
    display: flex;
    align-items: center;
    text-align: center; 
    padding: 0%; 
    font-size:30px;
}
.user-profile{
    height: 60px;
    border:2px solid #cc0052;
    border-radius: 40px;
    margin-right: 5px;
    margin-top: 5px;
}

.login-form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px;
}
.item-holder {
  display: flex;
  gap: 15px;
  
}
.input-box{
    background-color: #fff7fb;
  width: 300px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.input-box:focus{
  outline: none;
}

.btn{
  background: #cc0052;
  color:white;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  padding: 8px;
}


.profile-heading{
  display: flex;
  flex-wrap: wrap;
  width: 350px;
  justify-content:left ;
  align-items: center;
  text-align: center; 
  padding: 0%; 
  font-size:30px;
}

.password-container{
  display: flex;
  align-items: center;
  border: 1px solid rgb(198, 197, 197);
  border-radius: 5px;
}
#pass{
  border: none;
  width: 85%;
}
.eye-img{
  cursor: pointer;
  height: 25px;
}
.toggle-btn{
   border: none;
  background: white;
  color: #c93779;
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
#info{
  margin-top: -12px; 
  font-size: 14px; 
  text-align: center;
}
.footer {
  background: #ffe6f2;
  padding: 30px 50px 10px;
  color: #c93779;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.footer-left p {
  font-size: 14px;
  color: #a83a6a;
}

.footer-center a {
  margin: 0 12px;
  text-decoration: none;
  color: #c93779;
  font-weight: 500;
}

.footer-center a:hover {
  color: #ea1068;
}

.footer-right {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.footer-right .heart {
  margin-right: 6px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #a83a6a;
  border-top: 1px solid #f2b6d8;
  padding-top: 10px;
}
.navbar{
  flex-wrap: wrap;
}
.hamburger{
  display: none;
  height: 30px;
}
.toggle-menu-container{
  display: none;
  flex-direction: column;
  position: fixed;
  background-color:#ffbfec ;
  width: 100%;
  padding: 40px 30px 10px 30px;
}
.toggle-menu{
  border: 2px solid #d85590;
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
  border-radius: 30px;
}
.toggle-menu a {
  text-decoration: none;
  font-size: 16px;
  color: #d85590;
  transition: 0.3s ease;
}
#login-img{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #c93779;
  cursor: pointer;
}
body.dark {
  background-color: #1e1e1e;
  color: #ffffff;
}

body.dark .navbar {
  background-color: #121212;
}

body.dark .nav-name,
body.dark .menu a,
body.dark .nav-clock {
  color: #ff9fcf;
}
body.dark .toggle-btn{
  background-color: #000;
  color: #fff;
}
body.dark .btn-delete{
  background-color: #000;
  color: #fff;
  box-shadow: 0 2px 4px #fff;
}
body.dark .footer{
  background-color: #121212;
}
body.dark .form-container{
  background-color: #262626;
}
body.dark .input-box{
  background-color: #333;
  color: #fff;
}
body.dark .btn{
  color: #fff;
  background-color: #000;
}
body.dark .password-container{
  background-color: #333;
}
@media (max-width: 768px) {
  .menu a{
    display: none;
  }
  .hamburger{
    display: block;
    position: fixed;
    top: 30px;
    right: 5px;
    height: 30px;
    border: none;
  }
  .navbar{
     padding: 14px 50px 14px 7px;
  }
  .toggle-menu-container.active{
  display: flex;
}
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-center a {
    display: inline-block;
    margin: 6px;
  }
}