.add-listing-page{
    min-height:100vh;
    width:100%;

    display:flex;
    justify-content:center;
    align-items:center;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.form-container{
    width:500px;
    max-width:90%;

    background:rgba(255,255,255,0.9);

    padding:40px;
    border-radius:20px;

    box-shadow:0 30px 80px rgba(0,0,0,0.35);
}

.form-title{
    font-weight:700;
    margin-bottom:5px;
}

.form-subtitle{
    color:gray;
    margin-bottom:25px;
}

.password-toggle{
    position:absolute;
    right:15px;
    top:42px;
    cursor:pointer;
    color:#666;
}

.password-toggle:hover{
    color:#ff385c;
}

.theme-dark .sign-up,
.theme-dark .login {
    color:white;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
    width: 100%;
    padding: 12px;
    
    border-radius: 10px;
    border: 1px solid #ddd;
    
    background: #fff;
    color: #444;
    
    font-weight: 500;
    text-decoration: none;
    
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .google-btn img {
    width: 20px;
    height: 20px;
  }
  
  .google-btn:hover {
    background: #f7f7f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  }

  .divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
  }
  
  .divider::before,
  .divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
  }
  
  .divider span {
    margin: 0 10px;
    color: #777;
    font-size: 14px;
  }

  .theme-dark .google-btn{
    background-color: #242424;
    color:white;
  }