header {
    background-color: #f8bbd0; 
    color: #faeeee;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}

.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.search-bar {
    display: flex;
    align-items: center;
    position: relative; 
}

.search-input {
    padding: 10px 45px 10px 15px; 
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    width: 500px; 
    font-size: 16px;
    color: #333;
}

.search-icon {
    position: absolute; 
    right: 15px; 
    font-size: 18px; 
    color: #666;
}

.icons {
    display: flex;
    align-items: center;
}

.cart, .user {
    margin-left: 20px;
    font-size: 20px;
    cursor: pointer;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
  }
  
 
  body {
    background: linear-gradient(120deg, #a18cd1, #fbc2eb);
    min-height: 100vh;
    display: block;
    margin: 0;
    padding: 0;
  }
  
  .register-wrapper {
    display: flex;
    justify-content: center;
    align-items: center; 
    background-color: #f0f0ff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: pop-in 0.6s ease;
    max-width: 400px;
    width: 100%;
    margin: 80px auto; 
  }
  
  .register-form {
    display: flex;
    flex-direction: column;
    width: 100%;  
  }
  
  .register-form h2 {
    color: #6c63ff;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .register-form input {
    padding: 12px 15px;
    margin: 10px 0;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    transition: 0.3s;
  }
  
  .register-form input:focus {
    border-color: #6c63ff;
    background-color: #fff;
    outline: none;
  }
  
  .register-form button {
    padding: 12px;
    background-color: #6c63ff;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .register-form button:hover {
    background-color: #554dd7;
  }
  
  .register-form p {
    margin-top: 20px;
    text-align: center;
    color: #333;
  }
  
  .register-form p a {
    color: #6c63ff;
    text-decoration: none;
  }
  
  .register-form p a:hover {
    text-decoration: underline;
  }
  

  