
    /* Container that centers the content */
    .login-container {
      max-width: 480px;
      width: 100%;
      background: #fff;
      padding: 60px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      /* justify-items: center; */
    }
   
    .btn-tradie {
      background: orange;
      color: white;
    }
    .btn-tradie:hover {
        background: orange;
      color: black;
    }
    .btn-poster {
      background: black;
      color: white;
    }
    .btn-poster:hover {
      background: black;
      color: white;
    }
    /* Form styles */
    .form-group {
      margin-bottom: 15px;
    }
    .form-group label {
      display: block;
      margin-bottom: 5px;
    }
    .form-control {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
    }
    .hidden {
      display: none;
    }
    /* Back button */
    .back-btn {
      background: #bbb;
      color: #fff;
      margin-top: 10px;
    }

    .el-sty{
        font-weight: bold;
        font-size: 20px;
    }

    

    /* Responsive tweaks if needed */
    @media (max-width: 600px) {
      .container {
        padding: 15px;
      }
      .btn {
        padding: 12px;
      }
    }