        body {
            background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                                  url('/images/background-login.webp');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;

            font-family: 'Montserrat', sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            color: #444;
            -webkit-font-smoothing: antialiased;
        }

        .login-container {
            background-color: #ffffff;
            padding: 40px 35px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            width: 100%;
            max-width: 550px;
            box-sizing: border-box;
            border: 1px solid #f0f0f0;
            margin: 20px;
            transition: max-width 0.4s ease;
        }

        .login-container.vendor-mode {
            max-width: 750px;
        }

        .header {
            text-align: center;
            margin-bottom: 30px;
        }

        .header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 400;
            color: #333;
            margin: 0;
            letter-spacing: 1px;
        }

        .role-selector {
            display: flex;
            gap: 10px;
            margin-bottom: 25px;
        }

        .role-btn {
            flex: 1;
            min-height: 48px;
            padding: 12px;
            border: 1px solid #eee;
            border-radius: 8px;
            background: #fff;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s ease;
            color: #666;
        }

        .role-btn.active {
            border-color: #b56a9a;
            color: #d291bc;
            background-color: rgba(210, 145, 188, 0.05);
        }

        .form-group {
            margin-bottom: 18px;
        }

        .vendor-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 600;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            background-color: #fff;
            box-sizing: border-box;
            transition: all 0.2s ease;
        }

        input:focus {
            border-color: #d291bc;
            outline: none;
            box-shadow: 0 0 0 4px rgba(210, 145, 188, 0.1);
        }

        #vendor-section {
            display: none;
            padding: 20px;
            background-color: #fdfdfd;
            border-radius: 8px;
            border: 1px dashed #eee;
            margin-bottom: 20px;
        }

        select.custom-select {
            width: 100%;
            padding: 12px;
            border: 1px solid #eee;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            background-color: #fff;
            color: #444;
            box-sizing: border-box;
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23d291bc' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C2.185 5.355 2.403 5 2.8 5h10.4a.2.2 0 0 1 .17.357L8.753 11.14a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: calc(100% - 15px) center;
        }

        select.custom-select:focus {
            border-color: #d291bc;
            outline: none;
            box-shadow: 0 0 0 4px rgba(210, 145, 188, 0.1);
        }

        .password-row {
            display: flex;
            gap: 8px;
        }

        .password-row input {
            flex: 1;
        }

        .toggle-btn {
            width: 48px;
            height: 45px;
            border: 1px solid #eee;
            background-color: #fff;
            border-radius: 8px;
            cursor: pointer;
            color: #ccc;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: 0.2s;
            padding: 0;
        }

        button[type="submit"] {
            width: 100%;
            padding: 14px;
            margin-top: 10px;
            background-color: #d291bc;
            border: none;
            border-radius: 8px;
            color: white;
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(210, 145, 188, 0.25);
            transition: 0.3s;
        }

        button[type="submit"]:hover {
            background-color: #c173a5;
            transform: translateY(-1px);
        }

        .footer {
            text-align: center;
            margin-top: 25px;
            font-size: 13px;
            color: #888;
        }

        .footer a {
            color: #b56a9a;
            text-decoration: underline;
            font-weight: 600;
        }

        .error-box {
            background-color: #fff5f5;
            border: 1px solid #feb2b2;
            color: #c53030;
            padding: 10px;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 20px;
            font-size: 13px;
        }

        .field-error {
            color: #b8266a;
            font-size: 11px;
            margin-top: 4px;
            font-weight: 600;
            animation: fadeIn 0.3s ease;
        }

        input.is-invalid {
            border-color: #d63384;
            background-color: #fff5f5;
        }

        .legal-section {
            margin: 20px 0;
            padding: 15px;
            background-color: #fcfcfc;
            border-radius: 8px;
            border: 1px solid #f0f0f0;
        }

        .form-check-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
        }

        .form-check-group:last-child {
            margin-bottom: 0;
        }

        .form-check-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            margin: 0;
            cursor: pointer;
            accent-color: #d291bc;
            flex-shrink: 0;
        }

        .form-check-group label {
            font-size: 12px;
            color: #666;
            text-transform: none;
            letter-spacing: normal;
            font-weight: 400;
            margin-bottom: 0;
            cursor: pointer;
            line-height: 1.5;
        }

        .form-check-group label a {
            color: #d291bc;
            text-decoration: none;
            font-weight: 600;
            transition: 0.2s;
        }

        .form-check-group label a:hover {
            color: #c173a5;
            text-decoration: underline;
        }

        input::placeholder {
            color: #bbb;
            font-size: 13px;
            font-weight: 400;
        }

        .disabled-vendor {
              opacity: 0.6;
              cursor: not-allowed !important;
              background-color: #f0f0f0 !important;
              color: #aaa !important;
              border: 1px dashed #ccc !important;
          }


          .disabled-vendor:hover {
              transform: none !important;
              box-shadow: none !important;
          }

       @media (max-width: 600px) {
           .vendor-grid {
               grid-template-columns: 1fr !important;
               gap: 15px;
           }

           #wedding-date-section,
           .form-group[style*="grid-column: span 2"],
           div[style*="grid-column: span 2"] {
               grid-column: span 1 !important;
           }

           .login-container {
               padding: 25px 20px;
               margin: 10px;
               max-width: 100%;
           }

           .login-container.vendor-mode {
               max-width: 100%;
           }

           .legal-section {
               padding: 10px;
           }

           .header h1 {
               font-size: 22px;
           }
       }
