
@media only screen and (min-width: 0px) and (max-width: 576px) {
    .desktop-steps {
    display: none;
  }

  .row> .row-city{
    width: 50% !important;
    max-width: 50% !important;
  }
}
  @media only screen and (min-width: 577px){
    .mobile-steps {
    display: none;
  }

  
  
}
    /* Basic Styling */
    /* bodsy {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      background-size: cover;
    } */

    /* Modal Styles */
    #modal_login .modal {
      display: none;
      position: fixed;
      /* z-index: 1; */
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      animation: fadeIn 0.3s ease-out;
    }

    #modal_login > .modal-content {
      background-color: #fff;
      margin: 5% auto;
      padding: 30px;
      border-radius: 12px;
      width: 90%;
      max-width: 450px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      animation: slideUp 0.5s ease-out;
      background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    }

    #modal_login > .modal-content > .close {
      color: #aaa;
      font-size: 30px;
      font-weight: bold;
      position: absolute;
      top: 10px;
      right: 20px;
      cursor: pointer;
    }

    #modal_login > .modal-content >.close:hover,
    #modal_login > .modal-content > .close:focus {
      color: #000;
      text-decoration: none;
    }

    /* Tab Button Styles */
    .tab-buttons {
      display: flex;
      justify-content: space-around;
      margin-bottom: 20px;
      border-bottom: 2px solid #ddd;
    }

    .tab-button {
      flex: 1;
      padding: 15px;
      cursor: pointer;
      text-align: center;
      background-color: #f4f7f6;
      border: none;
      font-size: 18px;
      border-radius: 8px 8px 0 0;
      transition: background-color 0.3s;
    }

    .tab-button.active {
      background-color: #0dcaf0 !important;
      color: white;
      font-weight: bold;
    }

    /* Form and Input Styling */
    .tab {
      display: none;
      animation: fadeIn 0.5s ease-out;
    }

    input[type="text"], input[type="password"], input[type="email"] {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 16px;
      box-sizing: border-box;
    }

    .login-button {
      width: 100%;
      padding: 12px;
      background-color: #0dcaf0 !important;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 18px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    button:hover {
      background-color: #0dcaf0 !important;
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideUp {
      from { transform: translateY(100px); }
      to { transform: translateY(0); }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        #modal_login > .modal-content {
        width: 90%;
        padding: 20px;
      }

      .tab-button {
        font-size: 16px;
        padding: 12px;
      }

      input[type="text"], input[type="password"], input[type="email"], button {
        font-size: 16px;
      }
    }

    @media (max-width: 480px) {
      .tab-buttons {
        flex-direction: column;
      }

      .tab-button {
        width: 100%;
        margin-bottom: 5px;
      }

      #modal_login > .modal-content {
        padding: 15px;
      }

      button {
        font-size: 16px;
      }
    }