  /* Signup page Styles */
 body {
     background-color: #f5f5f5;
 }

 .signup-container {
     background: white;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
 }

 .form-title {
     font-size: 28px;
     font-weight: 700;
     margin-bottom: 20px;
 }

 .google-btn {
     border: 1px solid #ddd;
     padding: 10px;
     border-radius: 6px;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 10px;
     background: white;
     cursor: pointer;
 }

 .google-btn img {
     width: 20px;
 }

 .right-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .error-message {
     color: red;
     font-size: 0.75rem;
     margin-bottom: 0.4rem;
     min-height: 10px;
     display: block;
 }