/*signup Page CSS*/

* { box-sizing: border-box; }
    .form-control { width: 100% !important; }

    .signup-container {
      background: #ffffff;
      max-width: 515px;
      min-height: 60vh;
      width: 90%;
      margin: 20px auto;
      padding: 35px 28px;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      box-sizing: border-box;
    }

    /* Mobile View */
    @media (max-width: 480px) {
      .signup-container {
        width: 95%;
        margin: 20px auto;
        padding: 22px 18px;
        max-width: 375px;    /* Mobile screen limit */
      }
    }

     /* Extra small screens */
     @media (max-width: 360px) {
       .signup-container {
         width: 95%;
         margin: 15px auto;
         padding: 18px 15px;
       }
    }


    .signup-avatar {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 32px;
      color: #fff;
    }
    
    .signup-logo-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }


    .signup-title {
      text-align: center;
      font-size: 22px;
      font-weight: 600;
      color: #333;
      margin: 20px 0 30px;
    }

    .signup-input-group {
      position: relative;
      margin-bottom: 20px;
    }

    .signup-input-group i.fa-user,
    .signup-input-group i.fa-envelope,
    .signup-input-group i.fa-at,
    .signup-input-group i.fa-phone,
    .signup-input-group i.fa-lock {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: #999;
    }

    .signup-toggle-password {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: #999;
      cursor: pointer;
    }

    .signup-input {
      width: 100%;
      padding: 12px 40px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 15px;
    }

    .signup-options {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .signup-options label {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .signup-forgot {
      text-decoration: none;
      color: #00bcd4;
    }
    
    .signup-option {
      text-decoration: none;
      color: #00bcd4;
      text-align: center;
    }

    .signup-button {
      width: 100%;
      background: #00bcd4;
      color: #fff;
      padding: 12px;
      font-size: 16px;
      font-weight: 500;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s ease;
      margin-bottom: 15px;
    }

    .signup-button:hover {
      background-color: #0097a7;
    }
    
    .signup-input:focus {
      border-color: rgb(0, 191, 255); /* Deep Sky Blue */
      outline: none;
      box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.25); /* Soft glow effect */
    }
    
    
    
    